From a5c1834628d9b318586d1549b4fc74f297d9b3e5 Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Tue, 4 Aug 2026 14:08:52 +0200 Subject: [PATCH] Improve symbol validation for assets with manual data source --- apps/api/src/app/import/import.service.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/api/src/app/import/import.service.ts b/apps/api/src/app/import/import.service.ts index 429fb2ab8..de66d7162 100644 --- a/apps/api/src/app/import/import.service.ts +++ b/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(); }