From 52dd53240ef65656b79f0a7ec70087ebc99e10f7 Mon Sep 17 00:00:00 2001 From: Noah Petherbridge Date: Thu, 7 Sep 2023 21:20:26 -0700 Subject: [PATCH] Another minor undeclared variable fix --- src/App.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.vue b/src/App.vue index 9810915..ac3f9d6 100644 --- a/src/App.vue +++ b/src/App.vue @@ -381,7 +381,7 @@ export default { // If we have toggled this while already connected to people: // Hang up on any that have a mutual viewership requirement, if // they can not see our VIP-only camera. - for (username of Object.keys(this.WebRTC.pc)) { + for (let username of Object.keys(this.WebRTC.pc)) { if (this.whoMap[username] != undefined && this.isVideoNotAllowed(this.whoMap[username])) { this.closeVideo(username); }