mirror of
https://github.com/DreamExposure/DisCal-Discord-Bot.git
synced 2026-05-04 16:19:37 -05:00
Fix typo causing looping through the wrong array
This commit is contained in:
@@ -81,7 +81,7 @@ export class DashboardGuildRunner implements TaskCallback {
|
||||
}.bind(this);
|
||||
|
||||
let langSelect = document.getElementById("discal-lang-select")!;
|
||||
for (let i = 0; i < this.guild.channels.length; i++) {
|
||||
for (let i = 0; i < this.guild.availableLangs.length; i++) {
|
||||
let lang = this.guild.availableLangs[i];
|
||||
let opt = document.createElement("option");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user