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 4acceae commit 75040ffCopy full SHA for 75040ff
src/components/Thread.vue
@@ -312,9 +312,8 @@ 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
- } if (error?.response?.status === 500) {
316
- this.error = t('mail', 'Email was not able to be opened')
317
- this.errorMessage = t('mail', 'Email was not able to be opened')
+ } else if (error?.response?.status === 500) {
+ this.error = { message: t('mail', 'Email was not able to be opened') }
318
319
} else {
320
this.errorMessage = t('mail', 'Could not load your message thread')
0 commit comments