Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Render audio messages and stickers #1195

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 @@ -71,6 +71,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 undefined;
}
}
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