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: CHANGELOG.unreleased.md
+1
Original file line number
Diff line number
Diff line change
@@ -19,6 +19,7 @@ For upgrade instructions, please check the [migration guide](MIGRATIONS.released
19
19
20
20
### Fixed
21
21
- Fixed a bug that lead to trees being dropped when merging to trees together. [#8359](https://github.com/scalableminds/webknossos/pull/8359)
22
+
- Fixed a bug where merging editable mapping (“proofreading”) annotations would sometimes fail. [#8367](https://github.com/scalableminds/webknossos/pull/8367)
22
23
23
24
### Removed
24
25
- Removed the feature to downsample existing volume annotations. All new volume annotations had a whole mag stack since [#4755](https://github.com/scalableminds/webknossos/pull/4755) (four years ago). [#7917](https://github.com/scalableminds/webknossos/pull/7917)
Copy file name to clipboardexpand all lines: webknossos-tracingstore/app/com/scalableminds/webknossos/tracingstore/tracings/editablemapping/EditableMappingUpdater.scala
+28-15
Original file line number
Diff line number
Diff line change
@@ -334,13 +334,15 @@ class EditableMappingUpdater(
334
334
agglomerateId2 <- agglomerateIdForSegmentId(segmentId2) ?~>"Failed to look up agglomerate ids for merge action segments"
335
335
agglomerateGraph1 <- agglomerateGraphForIdWithFallback(mapping, agglomerateId1) ?~>s"Failed to get agglomerate graph for id $agglomerateId1"
336
336
agglomerateGraph2 <- agglomerateGraphForIdWithFallback(mapping, agglomerateId2) ?~>s"Failed to get agglomerate graph for id $agglomerateId2"
337
-
_ <- bool2Fox(agglomerateGraph2.segments.contains(segmentId2)) ?~>s"Segment $segmentId2 as queried by position ${update.segmentPosition2} is not contained in fetched agglomerate graph for agglomerate $agglomerateId2"
337
+
_ <- bool2Fox(agglomerateGraph2.segments.contains(segmentId2)) ?~>s"Segment $segmentId2 as queried by position ${update.segmentPosition2} is not contained in fetched agglomerate graph for agglomerate $agglomerateId2. actionTimestamp: ${update.actionTimestamp}, graph segments: ${agglomerateGraph2.segments}"
Copy file name to clipboardexpand all lines: webknossos-tracingstore/app/com/scalableminds/webknossos/tracingstore/tracings/volume/VolumeUpdateActions.scala
0 commit comments