Skip to content
Snippets Groups Projects
Unverified Commit 90b44e8a authored by Guilherme Gazzo's avatar Guilherme Gazzo Committed by GitHub
Browse files

Chore: Fix CI intermittent (#26649)

parent 00e1b2cc
No related branches found
No related tags found
No related merge requests found
...@@ -100,10 +100,6 @@ export const RoomManager = new (function () { ...@@ -100,10 +100,6 @@ export const RoomManager = new (function () {
if (record.streamActive !== true) { if (record.streamActive !== true) {
msgStream msgStream
.on(record.rid, async (msg) => { .on(record.rid, async (msg) => {
// Should not send message to room if room has not loaded all the current messages
if (RoomHistoryManager.hasMoreNext(record.rid) !== false) {
return;
}
// Do not load command messages into channel // Do not load command messages into channel
if (msg.t !== 'command') { if (msg.t !== 'command') {
const subscription = ChatSubscription.findOne({ rid: record.rid }, { reactive: false }); const subscription = ChatSubscription.findOne({ rid: record.rid }, { reactive: false });
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment