mirror of
https://github.com/TitanEmbeds/Titan.git
synced 2024-12-25 06:27:03 +01:00
Fill Discord member list with error if it has any before bailing
This commit is contained in:
parent
952afdf31d
commit
8d1592b717
@ -861,7 +861,9 @@
|
||||
|
||||
function fill_discord_members(discordmembers) {
|
||||
if (!discord_users_list_enabled) {
|
||||
return;
|
||||
if (discordmembers.length == 0 || discordmembers[0].id != 0) {
|
||||
return;
|
||||
}
|
||||
}
|
||||
discord_users_list = discordmembers;
|
||||
var template = $('#mustache_authedusers').html();
|
||||
|
Loading…
Reference in New Issue
Block a user