Minor undeclared variable fix

vue-cli
Noah 2023-09-07 21:17:33 -07:00
parent dbfd45794a
commit 5d0515cba6
1 changed files with 1 additions and 1 deletions

View File

@ -2133,7 +2133,7 @@ export default {
// Stop broadcasting. // Stop broadcasting.
stopVideo() { stopVideo() {
// Close all WebRTC sessions. // Close all WebRTC sessions.
for (username of Object.keys(this.WebRTC.pc)) { for (let username of Object.keys(this.WebRTC.pc)) {
this.closeVideo(username, "answerer"); this.closeVideo(username, "answerer");
} }