Add support for unencrypted media

This commit is contained in:
2025-11-28 17:22:58 +01:00
parent 123e069d18
commit c360432911
4 changed files with 5 additions and 4 deletions

View File

@@ -23,6 +23,7 @@ export interface RoomMessageEvent extends BaseRoomEvent {
msgtype?: MessageType;
body?: string;
};
url?: string;
file?: { url: string };
};
}