c trop bieeeen
This commit is contained in:
parent
50d46d0f0c
commit
c6f5ab3438
6 changed files with 83 additions and 13 deletions
|
|
@ -48,7 +48,7 @@ async function listRooms() {
|
|||
|
||||
if (!response || !response.ok) {
|
||||
console.error(
|
||||
"Could not retrieve rooms list: " + response
|
||||
"Could not retrieve rooms list: " + response && response.statusText
|
||||
? response.statusText
|
||||
: "null",
|
||||
);
|
||||
|
|
@ -87,7 +87,7 @@ async function fetchRoomConfig(room) {
|
|||
|
||||
if (!response || !response.ok) {
|
||||
console.error(
|
||||
"Could not retrieve room config" + response
|
||||
"Could not retrieve room config" + response && response.statusText
|
||||
? response.statusText
|
||||
: "null",
|
||||
);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue