From 2d7ceff89614680f113e6bda6a87e9494bebeb22 Mon Sep 17 00:00:00 2001 From: oysand Date: Fri, 9 Feb 2024 12:08:26 +0100 Subject: [PATCH] Fix mission task update for custom mission --- backend/api/Services/CustomMissionService.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/api/Services/CustomMissionService.cs b/backend/api/Services/CustomMissionService.cs index 1d689fdc9..49f36e05d 100644 --- a/backend/api/Services/CustomMissionService.cs +++ b/backend/api/Services/CustomMissionService.cs @@ -38,6 +38,7 @@ public async Task UploadSource(List tasks) foreach (var task in content) { task.Id = Guid.NewGuid().ToString(); // This is needed as tasks are owned by mission runs + task.IsarTaskId = Guid.NewGuid().ToString(); // This is needed to update the tasks for the correct mission run } } catch (Exception)