mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-29 20:19:22 +03:00
fix: '#/mailbox/folder/mUID/search' URI does not show the message
This commit is contained in:
parent
36789bd3b5
commit
4b26317be8
1 changed files with 8 additions and 4 deletions
|
|
@ -301,10 +301,14 @@ populateMessageBody = (oMessage, popup) => {
|
|||
} else {
|
||||
let json = oData?.Result;
|
||||
if (json
|
||||
&& oMessage.hash === json.hash
|
||||
// && oMessage.folder === json.folder
|
||||
// && oMessage.uid == json.uid
|
||||
&& oMessage.revivePropertiesFromJson(json)
|
||||
&& ((
|
||||
oMessage.hash && oMessage.hash === json.hash
|
||||
) || (
|
||||
!oMessage.hash
|
||||
&& oMessage.folder === json.folder
|
||||
&& oMessage.uid == json.uid)
|
||||
)
|
||||
&& oMessage.revivePropertiesFromJson(json)
|
||||
) {
|
||||
/*
|
||||
if (bCached) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue