mirror of
https://github.com/SchildiChat/schildichat-desktop.git
synced 2025-03-26 10:07:47 +01:00
26 lines
952 B
Diff
26 lines
952 B
Diff
From 2180196ba74a9526d0a68ad17328631d9b661cd2 Mon Sep 17 00:00:00 2001
|
|
From: SpiritCroc <dev@spiritcroc.de>
|
|
Date: Sun, 17 Dec 2023 11:11:58 +0100
|
|
Subject: Don't sort muted rooms to bottom, I still want to see them.
|
|
|
|
---
|
|
.../room-list/algorithms/list-ordering/OrderingAlgorithm.ts | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/src/stores/room-list/algorithms/list-ordering/OrderingAlgorithm.ts b/src/stores/room-list/algorithms/list-ordering/OrderingAlgorithm.ts
|
|
index 0f95fe78c2..2de554c357 100644
|
|
--- a/src/stores/room-list/algorithms/list-ordering/OrderingAlgorithm.ts
|
|
+++ b/src/stores/room-list/algorithms/list-ordering/OrderingAlgorithm.ts
|
|
@@ -38,7 +38,7 @@ export abstract class OrderingAlgorithm {
|
|
}
|
|
|
|
public get isMutedToBottom(): boolean {
|
|
- return this.sortingAlgorithm === SortAlgorithm.Recent;
|
|
+ return this.sortingAlgorithm === SortAlgorithm.Recent && false;
|
|
}
|
|
|
|
/**
|
|
--
|
|
2.48.1
|
|
|