Another minor undeclared variable fix

vue-cli
Noah 2023-09-07 21:20:26 -07:00
parent 5d0515cba6
commit 52dd53240e
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}