Add back autojoins

This commit is contained in:
Dean Herbert 2018-09-28 19:33:35 +09:00
parent 3cacc11af1
commit 862d3c4a69
1 changed files with 2 additions and 4 deletions

View File

@ -305,10 +305,8 @@ private void initializeChannels()
Scheduler.Add(delegate Scheduler.Add(delegate
{ {
//todo: decide how to handle default channels for a user now that they are saved server-side. //todo: decide how to handle default channels for a user now that they are saved server-side.
// we likely don't want to re-join every startup like this. addChannel(channels.Find(c => c.Name == @"#lazer"));
//addChannel(channels.Find(c => c.Name == @"#lazer")); addChannel(channels.Find(c => c.Name == @"#osu"));
//addChannel(channels.Find(c => c.Name == @"#osu"));
//addChannel(channels.Find(c => c.Name == @"#lobby"));
channelSelection.OnRequestJoin = addChannel; channelSelection.OnRequestJoin = addChannel;
channelSelection.OnRequestLeave = removeChannel; channelSelection.OnRequestLeave = removeChannel;