Skip to content
This repository has been archived by the owner on Jul 4, 2024. It is now read-only.

ML: Changed to deconstruct strategy in for fa #13

Merged
merged 1 commit into from
Mar 4, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,9 @@ async def get_participants(self, type: str, id: str):
strategy: FaConstructStrategy = await FaConstructStrategy.get_by_id(
dfsp_prov.strategy_id
)
res = self.construct_service.deconstruct(response, strategy.strategy)
res = self.construct_service.deconstruct(
response, strategy.deconstruct_strategy
)
if res and dfsp_prov.code in [i.value for i in res]:
dfsp_id = dfsp_prov.code
break
Expand Down
Loading