1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 16:52:54 +08:00

Fix SelectorTab crashing tests after a reload

For some reason, the default channel type (Public) caused the channel manager to attempt to connect to an API, which was null at that time, after hot reloading the test environment (via dynamic compilation). Changing the channel type seems to fix that.
This commit is contained in:
TheWildTree 2020-03-13 18:27:33 +01:00
parent 70427a19c1
commit 097bd37e37

View File

@ -39,6 +39,7 @@ namespace osu.Game.Overlays.Chat.Tabs
public ChannelSelectorTabChannel() public ChannelSelectorTabChannel()
{ {
Name = "+"; Name = "+";
Type = ChannelType.Temporary;
} }
} }
} }