fix rounding issue with large integers
this bug was the bane of my existence
This commit is contained in:
parent
183f888106
commit
abbb4fbb62
@ -244,7 +244,7 @@ function loadChannelOptions() {
|
||||
data.forEach(item => {
|
||||
$input.append($(
|
||||
"<option>",
|
||||
{text: `#${item.name}`, value: parseInt(item.id)}
|
||||
{text: `#${item.name}`, value: BigInt(item.id)}
|
||||
));
|
||||
})
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user