We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5d375d commit c4b0a56Copy full SHA for c4b0a56
index.js
@@ -284,7 +284,6 @@ async function purgeRoom(roomId) {
284
285
//run dendrite admin endpoint to evacuate all users from `roomId`
286
async function evacuateRoom(roomId, preserve) {
287
- console.log(roomId);
288
makeAdminReq("_dendrite", "POST", "evacuateRoom", roomId).then((e) => {
289
//if preserve flag not provided, proceed to purgeRoom
290
if (!preserve) purgeRoom(roomId);
@@ -293,7 +292,6 @@ async function evacuateRoom(roomId, preserve) {
293
292
294
//resolves roomAlias to roomId, and runs evacuateRoom(roomId)
295
function evacuateRoomAlias(roomAlias, preserve) {
296
- console.log(roomAlias);
297
client
298
.resolveRoom(roomAlias)
299
.then((r) => evacuateRoom(r, preserve))
0 commit comments