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' 'marketData'
); );
// Asset profile belongs to a different user // Asset profile belongs to a different user, generate a new symbol
if (existingAssetProfile) { if (existingAssetProfile && !isDryRun) {
symbol = randomUUID(); symbol = randomUUID();
} }

Loading…
Cancel
Save