Skip to content

Commit 1635083

Browse files
committed
lint
1 parent 5351a02 commit 1635083

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Bridge.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -694,7 +694,7 @@ export class Bridge {
694694
const allRooms = this.botUsersManager.joinedRooms;
695695

696696
const processRooms = async () => {
697-
for (let roomId = allRooms.pop(); !!roomId; roomId = allRooms.pop()) {
697+
for (let roomId = allRooms.pop(); roomId !== undefined; roomId = allRooms.pop()) {
698698
log.debug("Fetching state for " + roomId);
699699

700700
try {

0 commit comments

Comments
 (0)