We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e58a87 commit 6e3f194Copy full SHA for 6e3f194
src/store/utils/backup.ts
@@ -363,6 +363,11 @@ const performMetadataRestore = async (): Promise<
363
return ok({ backupExists: false });
364
}
365
366
+ // apply migrations
367
+ if (backupRes.value.metadata.version < 47) {
368
+ backup.comments = {};
369
+ }
370
+
371
dispatch(updateMetadata({ ...expectedBackupShape, ...backup }));
372
dispatch(backupSuccess({ category: EBackupCategories.metadata }));
373
0 commit comments