Skip to content

Commit

Permalink
Merge pull request DevChatter#72 from essenbee/bug-fix
Browse files Browse the repository at this point in the history
Fix logic error in ChannelType
  • Loading branch information
benrick authored Apr 23, 2019
2 parents 7de7c0c + 1820dbc commit a38d0fb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ private async Task<ILookup<int, ScheduledStream>> GetScheduledStreams(IEnumerabl

var streamsNotInZone = scheduleLookup
.SelectMany(x => x)
.Where(stream => stream.TimeZoneId.Equals(_timeZone));
.Where(stream => !stream.TimeZoneId.Equals(_timeZone));

foreach (ScheduledStream stream in streamsNotInZone)
{
Expand Down

0 comments on commit a38d0fb

Please sign in to comment.