Fixed application path detection.

This commit is contained in:
kay.one 2011-11-20 19:42:45 -08:00
commit 5ea8fd22f7
5 changed files with 40 additions and 17 deletions

View file

@ -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);