mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-17 05:55:00 +08:00
Revert to manual sorting for custom tag rooms
This commit is contained in:
parent
dc3afb3e57
commit
8ec83d4a77
@ -62,15 +62,16 @@ const getListAlgorithm = (listKey, settingAlgorithm) => {
|
|||||||
// apply manual sorting only to m.favourite, otherwise respect the global setting
|
// apply manual sorting only to m.favourite, otherwise respect the global setting
|
||||||
// all the known tags are listed explicitly here to simplify future changes
|
// all the known tags are listed explicitly here to simplify future changes
|
||||||
switch (listKey) {
|
switch (listKey) {
|
||||||
case "m.favourite":
|
|
||||||
return ALGO_MANUAL;
|
|
||||||
case "im.vector.fake.invite":
|
case "im.vector.fake.invite":
|
||||||
case "im.vector.fake.recent":
|
case "im.vector.fake.recent":
|
||||||
case "im.vector.fake.archived":
|
case "im.vector.fake.archived":
|
||||||
case "m.lowpriority":
|
case "m.lowpriority":
|
||||||
case TAG_DM:
|
case TAG_DM:
|
||||||
default:
|
|
||||||
return settingAlgorithm;
|
return settingAlgorithm;
|
||||||
|
|
||||||
|
case "m.favourite":
|
||||||
|
default: // custom-tags
|
||||||
|
return ALGO_MANUAL;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user