mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-15 04:34:59 +08:00
Avoid error when DMing oneself (#11754)
* Avoid error when DMing oneself Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Update comment Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Add test Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --------- Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
parent
7f37699566
commit
fd08e74275
@ -119,7 +119,10 @@ export default async function createRoom(client: MatrixClient, opts: IOpts): Pro
|
||||
const createOpts: ICreateRoomOpts = opts.createOpts || {};
|
||||
createOpts.preset = createOpts.preset || defaultPreset;
|
||||
createOpts.visibility = createOpts.visibility || Visibility.Private;
|
||||
if (opts.dmUserId && createOpts.invite === undefined) {
|
||||
|
||||
// We allow UX of DMing ourselves as a form of creating a personal room but the server throws
|
||||
// an error when a user tries to invite themselves so we filter it out
|
||||
if (opts.dmUserId && opts.dmUserId !== client.getUserId() && createOpts.invite === undefined) {
|
||||
switch (getAddressType(opts.dmUserId)) {
|
||||
case "mx-user-id":
|
||||
createOpts.invite = [opts.dmUserId];
|
||||
|
@ -142,6 +142,15 @@ describe("createRoom", () => {
|
||||
}),
|
||||
);
|
||||
});
|
||||
|
||||
it("should strip self-invite", async () => {
|
||||
await createRoom(client, { dmUserId: client.getSafeUserId() });
|
||||
expect(client.createRoom).toHaveBeenCalledWith(
|
||||
expect.not.objectContaining({
|
||||
invite: expect.any(Array),
|
||||
}),
|
||||
);
|
||||
});
|
||||
});
|
||||
|
||||
describe("canEncryptToAllUsers", () => {
|
||||
|
Loading…
Reference in New Issue
Block a user