Skip to content

Commit

Permalink
Fix copy paste error which caused channels not to be saved to disk :(
Browse files Browse the repository at this point in the history
Fixes issue #18
  • Loading branch information
laurencee committed Jun 5, 2016
1 parent 575e1d0 commit 39422bb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions GlobalAssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]

[assembly: AssemblyVersion("2.4.2.0")]
[assembly: AssemblyFileVersion("2.4.2.0")]
[assembly: AssemblyVersion("2.4.3.0")]
[assembly: AssemblyFileVersion("2.4.3.0")]
4 changes: 2 additions & 2 deletions Livestream.Monitor/Model/Monitoring/MonitorStreamsModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -130,9 +130,9 @@ public async Task ImportFollows(string username, IApiClient apiClient)
followedChannelsQueryResults.EnsureAllQuerySuccess();

var newChannels = followedChannelsQueryResults.Select(x => x.ChannelIdentifier).ToList();
AddChannels(channelIdentifiers.ToArray());
newChannels.ForEach(x => x.ApiClient.AddChannelWithoutQuerying(x));
Livestreams.AddRange(followedChannelsQueryResults.Select(x => x.LivestreamModel));
newChannels.ForEach(x => x.ApiClient.AddChannelWithoutQuerying(x));
AddChannels(newChannels.ToArray());
await RefreshLivestreams();
}

Expand Down

0 comments on commit 39422bb

Please sign in to comment.