1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-24 18:07:36 +08:00

Fix chat making needless requests

This commit is contained in:
Dean Herbert 2018-11-10 08:54:56 +09:00
parent 82d53e6f17
commit 86aab9c31b

View File

@ -1,4 +1,4 @@
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System;
@ -393,10 +393,10 @@ namespace osu.Game.Overlays
api.Queue(req);
return;
}
}
// let's fetch a small number of messages to bring us up-to-date with the backlog.
fetchInitialMessages(channel);
// let's fetch a small number of messages to bring us up-to-date with the backlog.
fetchInitialMessages(channel);
}
if (CurrentChannel == null)
CurrentChannel = channel;