Skip to content

Commit d6c3490

Browse files
authored
Merge pull request #1895 from yosmoc/move_note_diff_storage_bug
fix moving note across different storage bug
2 parents 6ee594d + d58ea70 commit d6c3490

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

browser/main/store.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ function data (state = defaultDataMap(), action) {
256256
let noteSet = state.storageNoteMap.get(note.storage)
257257
noteSet = new Set(noteSet)
258258
noteSet.add(uniqueKey)
259-
state.folderNoteMap.set(folderKey, noteSet)
259+
state.storageNoteMap.set(folderKey, noteSet)
260260
}
261261

262262
// Update foldermap if folder changed or post created

0 commit comments

Comments
 (0)