You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: webknossos-tracingstore/app/com/scalableminds/webknossos/tracingstore/tracings/editablemapping/EditableMappingIOService.scala
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -202,26 +202,26 @@ class EditableMappingIOService @Inject()(tempFileService: TsTempFileService,
202
202
timestamp: Long):EditableMappingUpdateAction=
203
203
if (edgeIsAddition) {
204
204
MergeAgglomerateUpdateAction(
205
-
agglomerateId1 =0,
206
-
agglomerateId2 =0,
205
+
agglomerateId1 =Some(0),
206
+
agglomerateId2 =Some(0),
207
207
segmentPosition1 =None,
208
208
segmentPosition2 =None,
209
209
segmentId1 =Some(edgeSrc),
210
210
segmentId2 =Some(edgeDst),
211
-
mag =Vec3Int.ones, // unused, as we do not look up segment ids by positions
211
+
mag =Some(Vec3Int.ones), // unused, as we do not look up segment ids by positions
212
212
actionTracingId = tracingId,
213
213
actionTimestamp =Some(timestamp),
214
214
actionAuthorId =None,
215
215
info =None
216
216
)
217
217
} else {
218
218
SplitAgglomerateUpdateAction(
219
-
agglomerateId =0,
219
+
agglomerateId =Some(0),
220
220
segmentPosition1 =None,
221
221
segmentPosition2 =None,
222
222
segmentId1 =Some(edgeSrc),
223
223
segmentId2 =Some(edgeDst),
224
-
mag =Vec3Int.ones, // unused, as we do not look up segment ids by positions
224
+
mag =Some(Vec3Int.ones), // unused, as we do not look up segment ids by positions
0 commit comments