mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-07 16:37:02 +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 {
|
} else {
|
||||||
let json = oData?.Result;
|
let json = oData?.Result;
|
||||||
if (json
|
if (json
|
||||||
&& oMessage.hash === json.hash
|
&& ((
|
||||||
// && oMessage.folder === json.folder
|
oMessage.hash && oMessage.hash === json.hash
|
||||||
// && oMessage.uid == json.uid
|
) || (
|
||||||
&& oMessage.revivePropertiesFromJson(json)
|
!oMessage.hash
|
||||||
|
&& oMessage.folder === json.folder
|
||||||
|
&& oMessage.uid == json.uid)
|
||||||
|
)
|
||||||
|
&& oMessage.revivePropertiesFromJson(json)
|
||||||
) {
|
) {
|
||||||
/*
|
/*
|
||||||
if (bCached) {
|
if (bCached) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue