Before, the server options were loaded first, meaning other js functions couldnt execute until the discord api call was completed, now this is done last.
6 lines
133 B
JavaScript
6 lines
133 B
JavaScript
$(document).ready(async function() {
|
|
initSubscriptionTable();
|
|
|
|
await loadSavedGuilds();
|
|
await loadServerOptions();
|
|
}); |