mirror of
https://github.com/ppy/osu
synced 2025-04-01 22:48:33 +00:00
Merge branch 'master' into player-fixes
This commit is contained in:
commit
ca9c52ce38
@ -284,10 +284,21 @@ namespace osu.Game.Overlays
|
|||||||
{
|
{
|
||||||
if (channel == null) return;
|
if (channel == null) return;
|
||||||
|
|
||||||
careChannels.Add(channel);
|
var existing = careChannels.Find(c => c.Id == channel.Id);
|
||||||
channelTabs.AddItem(channel);
|
|
||||||
|
|
||||||
// we need to get a good number of messages initially for each channel we care about.
|
if (existing != null)
|
||||||
|
{
|
||||||
|
// if we already have this channel loaded, we don't want to make a second one.
|
||||||
|
channel = existing;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
|
||||||
|
careChannels.Add(channel);
|
||||||
|
channelTabs.AddItem(channel);
|
||||||
|
}
|
||||||
|
|
||||||
|
// let's fetch a small number of messages to bring us up-to-date with the backlog.
|
||||||
fetchInitialMessages(channel);
|
fetchInitialMessages(channel);
|
||||||
|
|
||||||
if (CurrentChannel == null)
|
if (CurrentChannel == null)
|
||||||
|
Loading…
Reference in New Issue
Block a user