Include tag name when warning about rooms running off lists

pull/21833/head
Travis Ralston 2019-03-04 10:56:18 -07:00
parent 3c1da4e875
commit a5b4d4ba95
1 changed files with 3 additions and 3 deletions

View File

@ -334,7 +334,7 @@ class RoomListStore extends Store {
return tags;
}
_slotRoomIntoList(room, category, existingEntries, newList, lastTimestampFn) {
_slotRoomIntoList(room, category, tag, existingEntries, newList, lastTimestampFn) {
const targetCategoryIndex = CATEGORY_ORDER.indexOf(category);
// The slotting algorithm works by trying to position the room in the most relevant
@ -432,7 +432,7 @@ class RoomListStore extends Store {
}
if (!pushedEntry && desiredCategoryBoundaryIndex >= 0) {
console.warn(`!! Room ${room.roomId} nearly lost: Ran off the end of the list`);
console.warn(`!! Room ${room.roomId} nearly lost: Ran off the end of ${tag}`);
console.warn(`!! Inserting at position ${desiredCategoryBoundaryIndex} with category ${category}`);
newList.splice(desiredCategoryBoundaryIndex, 0, {room, category});
pushedEntry = true;
@ -483,7 +483,7 @@ class RoomListStore extends Store {
listsClone[key] = [];
const pushedEntry = this._slotRoomIntoList(
room, category, this._state.lists[key], listsClone[key], lastTimestamp);
room, category, key, this._state.lists[key], listsClone[key], lastTimestamp);
if (!pushedEntry) {
// This should rarely happen: _slotRoomIntoList has several checks which attempt