changed air days to checkboxes

This commit is contained in:
Luke Pulverenti
2014-02-09 12:44:25 -05:00
parent aac392f4cd
commit 3111a8a1bc
3 changed files with 19 additions and 4 deletions

View File

@@ -111,9 +111,9 @@ namespace MediaBrowser.Api.WebSocket
{
var line = await reader.ReadLineAsync().ConfigureAwait(false);
if (line.IndexOf("Info", StringComparison.OrdinalIgnoreCase) != -1 ||
line.IndexOf("Warn", StringComparison.OrdinalIgnoreCase) != -1 ||
line.IndexOf("Error", StringComparison.OrdinalIgnoreCase) != -1)
if (line.IndexOf("Info -", StringComparison.OrdinalIgnoreCase) != -1 ||
line.IndexOf("Warn -", StringComparison.OrdinalIgnoreCase) != -1 ||
line.IndexOf("Error -", StringComparison.OrdinalIgnoreCase) != -1)
{
lines.Add(line);
}