Browse Source

Improve symbol validation for assets with manual data source

pull/7467/head
Thomas Kaul 4 weeks ago
parent
commit
a5c1834628
  1. 4
      apps/api/src/app/import/import.service.ts

4
apps/api/src/app/import/import.service.ts

@ -475,8 +475,8 @@ export class ImportService {
'marketData'
);
// Asset profile belongs to a different user
if (existingAssetProfile) {
// Asset profile belongs to a different user, generate a new symbol
if (existingAssetProfile && !isDryRun) {
symbol = randomUUID();
}

Loading…
Cancel
Save