mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-20 21:43:33 -07:00
Fixed application path detection.
This commit is contained in:
parent
508be34ebc
commit
5ea8fd22f7
5 changed files with 40 additions and 17 deletions
|
@ -118,7 +118,7 @@ namespace NzbDrone.Common
|
|||
private void OnOutputDataReceived(object s, DataReceivedEventArgs e)
|
||||
{
|
||||
if (e == null || String.IsNullOrWhiteSpace(e.Data) || e.Data.StartsWith("Request started:") ||
|
||||
e.Data.StartsWith("Request ended:") || e.Data == ("IncrementMessages called") || e.Data == "iisexpress")
|
||||
e.Data.StartsWith("Request ended:") || e.Data == ("IncrementMessages called") || e.Data == "iisexpress" || e.Data == "nzbdrone")
|
||||
return;
|
||||
|
||||
Console.WriteLine(e.Data);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue