diff options
author | George Hazan <george.hazan@gmail.com> | 2023-10-25 18:09:05 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2023-10-25 18:09:05 +0300 |
commit | d3359c804bb31caa5f38aefdcefea282960cb88b (patch) | |
tree | 9a9a1cfa4c03375d72279f6fb9ec229d1e31333d /protocols/YAMN/src/proto | |
parent | ec3ca17d4e339c0db3425544a772497e924be0de (diff) |
more for #3750
Diffstat (limited to 'protocols/YAMN/src/proto')
-rw-r--r-- | protocols/YAMN/src/proto/pop3/pop3comm.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/protocols/YAMN/src/proto/pop3/pop3comm.cpp b/protocols/YAMN/src/proto/pop3/pop3comm.cpp index f1c3918c2e..0bd8466233 100644 --- a/protocols/YAMN/src/proto/pop3/pop3comm.cpp +++ b/protocols/YAMN/src/proto/pop3/pop3comm.cpp @@ -627,8 +627,12 @@ void MIR_CDECL SynchroPOP3(CheckParam *WhichTemp) }
YAMN_MAILBROWSERPARAM Param = { ActualAccount, NFlags, NNFlags, 0 };
- if (bForceCheck)
- Param.nnflags |= YAMN_ACC_FORCEPOP; // if force check, show popup anyway and if mailbrowser was opened, do not close
+
+ // if force check, show popup anyway and if mailbrowser was opened, do not close
+ if (bForceCheck) {
+ Param.nflags |= YAMN_ACC_POP;
+ Param.nnflags |= YAMN_ACC_POP;
+ }
Param.nnflags |= YAMN_ACC_MSGP; // do not close browser if already open
RunMailBrowser(&Param);
|