Bugfix/fix query to get asset profiles matching data source and symbol (#2504)

* Match dataSource and symbol

* Update changelog
pull/2505/head
Thomas Kaul 12 months ago committed by GitHub
parent 0375b938a2
commit 74278073b3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -22,6 +22,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Displayed the transfer cash balance button based on a permission - Displayed the transfer cash balance button based on a permission
- Fixed the biometric authentication - Fixed the biometric authentication
- Fixed the query to get asset profiles that match both the `dataSource` and `symbol` values
## 2.11.0 - 2023-10-14 ## 2.11.0 - 2023-10-14

@ -52,20 +52,12 @@ export class SymbolProfileService {
SymbolProfileOverrides: true SymbolProfileOverrides: true
}, },
where: { where: {
AND: [ OR: aUniqueAssets.map(({ dataSource, symbol }) => {
{ return {
dataSource: { dataSource,
in: aUniqueAssets.map(({ dataSource }) => { symbol
return dataSource; };
}) })
},
symbol: {
in: aUniqueAssets.map(({ symbol }) => {
return symbol;
})
}
}
]
} }
}) })
.then((symbolProfiles) => this.getSymbols(symbolProfiles)); .then((symbolProfiles) => this.getSymbols(symbolProfiles));

Loading…
Cancel
Save