Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .changeset/add_better_misc_data_styling.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
default: fix
default: patch
---

Fix spam-clicking abbreviations crashing sable
5 changes: 5 additions & 0 deletions .changeset/fix_apng_animation.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
default: patch
---

Fix apng files not animating.
5 changes: 5 additions & 0 deletions .changeset/fix_set_dmed_as_founder.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
default: patch
---

Fix other dmed party not being added as a founder by default when creating a dm.
2 changes: 1 addition & 1 deletion .changeset/info-change-credits.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
default: info
default: patch
---

Update verbiage in the credits
6 changes: 5 additions & 1 deletion src/app/components/RenderMessageContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -337,11 +337,15 @@ function RenderMessageContentInternal({
const info = (content as { info?: { mimetype?: string } }).info;
const isGif =
info?.mimetype === 'image/gif' ||
info?.mimetype === 'image/apng' ||
info?.mimetype === 'image/webp' ||
(content.body as string)?.toLowerCase().endsWith('.gif') ||
(content.body as string)?.toLowerCase().endsWith('.apng') ||
(content.body as string)?.toLowerCase().endsWith('.webp') ||
(typeof (content as { url?: string }).url === 'string' &&
(content as { url?: string }).url?.toLowerCase().includes('gif'));
((content as { url?: string }).url?.toLowerCase().endsWith('.gif') ||
(content as { url?: string }).url?.toLowerCase().endsWith('.apng') ||
(content as { url?: string }).url?.toLowerCase().endsWith('.webp')));

return renderCaptionedAttachment(
<MImage
Expand Down
3 changes: 3 additions & 0 deletions src/app/features/create-chat/CreateChat.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ export function CreateChat({ defaultUserId }: CreateChatProps) {
visibility: Visibility.Private,
preset: Preset.TrustedPrivateChat,
initial_state: initialState,
creation_content: {
additional_creators: [userId],
},
});

addRoomIdToMDirect(mx, result.room_id, userId);
Expand Down
Loading