fix channels not showing as selected

This commit is contained in:
Corban-Lee Jones 2024-10-03 00:16:33 +01:00
parent 760efda35a
commit 183f888106

View File

@ -244,7 +244,7 @@ function loadChannelOptions() {
data.forEach(item => {
$input.append($(
"<option>",
{text: `#${item.name}`, value: item.id}
{text: `#${item.name}`, value: parseInt(item.id)}
));
})