summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2021-08-11 00:39:01 +0200
committerNicolas Werner <nicolas.werner@hotmail.de>2021-08-11 00:39:01 +0200
commit5e2526dac4e264914b0c2d999f99b9ffc971d5b7 (patch)
treef678907346b2c8feffe051fec2d91aaba74f4c2f /src
parentFix potential crash when trying to read room info too early (diff)
downloadnheko-5e2526dac4e264914b0c2d999f99b9ffc971d5b7.tar.xz
fix sticker packs being uneditable in some rooms
Diffstat (limited to 'src')
-rw-r--r--src/timeline/TimelineModel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/timeline/TimelineModel.cpp b/src/timeline/TimelineModel.cpp

index 99e00a67..513f08bc 100644 --- a/src/timeline/TimelineModel.cpp +++ b/src/timeline/TimelineModel.cpp
@@ -310,7 +310,7 @@ qml_mtx_events::fromRoomEventType(qml_mtx_events::EventType t) return mtx::events::EventType::RoomMessage; //! m.image_pack, currently im.ponies.room_emotes case qml_mtx_events::ImagePackInRoom: - return mtx::events::EventType::ImagePackRooms; + return mtx::events::EventType::ImagePackInRoom; //! m.image_pack, currently im.ponies.user_emotes case qml_mtx_events::ImagePackInAccountData: return mtx::events::EventType::ImagePackInAccountData;