Skip to content

Commit

Permalink
Merge pull request #8937 from nextcloud/fix/mailto/show-empty-thread-…
Browse files Browse the repository at this point in the history
…on-handler

fix(mailto): show empty thread view on handler
  • Loading branch information
GretaD authored Oct 9, 2023
2 parents 2a41b47 + 43bdb38 commit fef0d04
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/MailboxThread.vue
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,9 @@ export default {
return 3
},
showThread() {
return (this.mailbox.isPriorityInbox === true || this.hasEnvelopes) && this.$route.name === 'message'
return (this.mailbox.isPriorityInbox === true || this.hasEnvelopes)
&& this.$route.name === 'message'
&& this.$route.params.threadId !== 'mailto'
},
query() {
if (this.$route.params.filter === 'starred') {
Expand Down

0 comments on commit fef0d04

Please sign in to comment.