From bed7de81c7709f5b04a7a117df808127a79da11f Mon Sep 17 00:00:00 2001 From: Sorunome Date: Wed, 25 Nov 2020 15:17:22 +0100 Subject: [PATCH] fix: Wrong emote pack identifier --- lib/src/room.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/room.dart b/lib/src/room.dart index b424e015..921f1c61 100644 --- a/lib/src/room.dart +++ b/lib/src/room.dart @@ -526,7 +526,7 @@ class Room { addEmotePack( (room.canonicalAlias?.isEmpty ?? true) ? room.id - : canonicalAlias, + : room.canonicalAlias, event.content, stateKeyEntry.value['name']); }