Skip to content

Commit

Permalink
Fix emails not loading on readonly
Browse files Browse the repository at this point in the history
  • Loading branch information
G4brym committed Feb 25, 2024
1 parent 94dafcd commit ec43577
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/dashboard-v2/src/pages/email/EmailFolderPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,9 @@ export default defineComponent({
const blob = new Blob([JSON.stringify(updatedIndex)], {
type: "application/json"
});
await apiHandler.uploadObjects(blob, indexKey, this.selectedBucket);
try {
await apiHandler.uploadObjects(blob, indexKey, this.selectedBucket);
} catch (e) {}
return updatedIndex;
},
Expand Down

0 comments on commit ec43577

Please sign in to comment.