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 e38f45f commit 691c33eCopy full SHA for 691c33e
src/components/Thread.vue
@@ -312,6 +312,9 @@ export default {
312
this.error = t('mail', 'Could not load your message thread')
313
this.errorMessage = t('mail', 'The thread doesn\'t exist or has been deleted')
314
this.loading = false
315
+ } else if (error?.response?.status === 500) {
316
+ this.error = { message: t('mail', 'Email was not able to be opened') }
317
+ this.loading = false
318
} else {
319
this.errorMessage = t('mail', 'Could not load your message thread')
320
}
0 commit comments