Log messages are not displayed when in the background

pull/5377/head
2dust 2024-07-08 17:16:49 +08:00
parent 449bb40d48
commit c2928be35d
1 changed files with 4 additions and 0 deletions

View File

@ -613,6 +613,10 @@ namespace v2rayN.ViewModels
private void UpdateHandler(bool notify, string msg) private void UpdateHandler(bool notify, string msg)
{ {
if (!_showInTaskbar)
{
return;
}
_noticeHandler?.SendMessage(msg); _noticeHandler?.SendMessage(msg);
if (notify) if (notify)
{ {