Chat Management: Changing the group type (#3136)

This commit is contained in:
Alexander Zinchuk 2023-05-03 20:20:40 +04:00
parent 4406831e02
commit 287dfe640a
2 changed files with 7 additions and 3 deletions

View File

@ -51,14 +51,17 @@ export async function setChatUsername(
}));
const usernames = chat.usernames
? chat.usernames.map((u) => (u.isEditable ? { ...u, username } : u))
? chat.usernames
.map((u) => (u.isEditable ? { ...u, username } : u))
// User can remove username from chat when changing it type to private, so we need to filter out empty usernames
.filter((u) => u.username)
: [{ username, isEditable: true, isActive: true }];
if (result) {
onUpdate({
'@type': 'updateChat',
id: chat.id,
chat: { usernames },
chat: { usernames: usernames.length ? usernames : undefined },
});
}

View File

@ -31,5 +31,6 @@ export function areDeepEqual<T extends any>(value1: T, value2: T): boolean {
const object2 = value2 as AnyLiteral;
const keys1 = Object.keys(object1);
return keys1.every((key1) => areDeepEqual(object1[key1], object2[key1]));
return keys1.length === Object.keys(object2).length
&& keys1.every((key1) => areDeepEqual(object1[key1], object2[key1]));
}