Skip to content
Snippets Groups Projects
Verified Commit e9a0f0a8 authored by Nicolas Werner's avatar Nicolas Werner
Browse files

Fix previews getting sorted above normal rooms

parent 74128cf8
No related branches found
No related tags found
No related merge requests found
Pipeline #3838 passed
...@@ -796,9 +796,9 @@ RoomlistModel::setCurrentRoom(const QString &roomid) ...@@ -796,9 +796,9 @@ RoomlistModel::setCurrentRoom(const QString &roomid)
namespace { namespace {
enum NotificationImportance : short enum NotificationImportance : short
{ {
ImportanceDisabled = -3, NoPreview = -3,
NoPreview = -2, Preview = -2,
Preview = -1, ImportanceDisabled = -1,
AllEventsRead = 0, AllEventsRead = 0,
NewMessage = 1, NewMessage = 1,
NewMentions = 2, NewMentions = 2,
......
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