Skip to content

Commit

Permalink
Squashed commit of the following:
Browse files Browse the repository at this point in the history
commit a9ee03d
Author: Mirian Margiani <[email protected]>
Date:   Mon Dec 2 13:00:38 2024 +0100

    Render stickers as images

    Signed-off-by: Mirian Margiani <[email protected]>

commit 000d89e
Author: Mirian Margiani <[email protected]>
Date:   Mon Dec 2 13:00:37 2024 +0100

    Show audio messages as files so they can be downloaded

    Signed-off-by: Mirian Margiani <[email protected]>

commit cd02ef6
Merge: 4ae47c0 58af591
Author: R Midhun Suresh <[email protected]>
Date:   Mon Oct 21 17:25:32 2024 +0530

    Merge pull request element-hq#1190 from element-hq/sdk-release/0.3.1

    Changes for sdk-release 0.3.1

commit 58af591
Author: R Midhun Suresh <[email protected]>
Date:   Mon Oct 21 17:23:57 2024 +0530

    Changes for sdk-release 0.3.1
  • Loading branch information
b100dian committed Dec 2, 2024
1 parent 06aeaf5 commit 4eccda0
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/domain/session/room/timeline/tiles/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ export function tileClassForEntry(entry: TimelineEntry, options: Options): TileC
case "m.video":
return VideoTile;
case "m.file":
case "m.audio":
return FileTile;
case "m.location":
return LocationTile;
Expand All @@ -86,6 +87,9 @@ export function tileClassForEntry(entry: TimelineEntry, options: Options): TileC
return UnknownEventTile;
}
}
case "m.sticker":
// This is an event type and not a message type.
return ImageTile;
case "m.room.name":
return RoomNameTile;
case "m.room.member":
Expand Down

0 comments on commit 4eccda0

Please sign in to comment.