Fixed: Error trying to notify user when process not UserInteractive

Closes #8927
This commit is contained in:
Qstick 2023-08-06 21:24:04 -05:00
parent d5b4f0efa9
commit 6ecd41bc5a
1 changed files with 5 additions and 1 deletions

View File

@ -32,7 +32,11 @@ namespace NzbDrone
{
Logger.Fatal(e, "EPIC FAIL: " + e.Message);
var message = string.Format("{0}: {1}", e.GetType().Name, e.ToString());
MessageBox.Show(text: message, buttons: MessageBoxButtons.OK, icon: MessageBoxIcon.Error, caption: "Epic Fail!");
if (RuntimeInfo.IsUserInteractive)
{
MessageBox.Show($"{e.GetType().Name}: {e.Message}", buttons: MessageBoxButtons.OK, icon: MessageBoxIcon.Error, caption: "Epic Fail!");
}
}
}
}