mirror of https://github.com/sualko/cloud_bbb
fix: minor fixes
parent
506ffa2c91
commit
a2c2485555
|
@ -106,7 +106,7 @@ const App: React.FC<Props> = () => {
|
||||||
function updateRoom(room: Room) {
|
function updateRoom(room: Room) {
|
||||||
return api.updateRoom(room).then(updatedRoom => {
|
return api.updateRoom(room).then(updatedRoom => {
|
||||||
|
|
||||||
if (!rooms.find(room => room.id == updatedRoom.id)) {
|
if (!rooms.find(room => room.id === updatedRoom.id)) {
|
||||||
setRooms(rooms.concat([updatedRoom]));
|
setRooms(rooms.concat([updatedRoom]));
|
||||||
} else {
|
} else {
|
||||||
setRooms(rooms.map(room => {
|
setRooms(rooms.map(room => {
|
||||||
|
@ -137,9 +137,11 @@ const App: React.FC<Props> = () => {
|
||||||
api.createRoomShare(newRoom.id, share.shareType, share.shareWith, share.permission);
|
api.createRoomShare(newRoom.id, share.shareType, share.shareWith, share.permission);
|
||||||
}))
|
}))
|
||||||
|
|
||||||
room.uid = newRoom.uid;
|
updateRoom({
|
||||||
room.id = newRoom.id;
|
...room,
|
||||||
updateRoom(room);
|
uid: newRoom.uid,
|
||||||
|
id: newRoom.id,
|
||||||
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue