Wait only when a notification has been set.

This commit is contained in:
Gerardo Melendrez 2018-05-24 00:09:25 -07:00
Родитель bb234cfd2c
Коммит 9c812f66cd
1 изменённых файлов: 1 добавлений и 2 удалений

Просмотреть файл

@ -41,14 +41,13 @@ namespace AppVNext.Notifier
if (string.IsNullOrEmpty(arguments.Errors) && !string.IsNullOrEmpty(arguments.Message))
{
SendNotification(arguments);
while (arguments.Wait) { System.Threading.Thread.Sleep(500); }
}
else
{
WriteLine($"{(arguments.Errors ?? string.Empty)}");
}
}
while (arguments.Wait) { System.Threading.Thread.Sleep(500); }
}
private static void SendNotification(NotificationArguments arguments)