Missing actor ip ban NPE
Opened this issue ยท 4 comments
Running on Spigot 1.10.2 and debug enabled.
You have an ip ban that was executed by a player that doesn't exist in the database.
Note: Ip loadAll should gracefully handle this, similar to player bans/mutes.
Is there a way for me to find the player/IP-ban or what should I do? Remove IP-bans?
You could try the following query:
SELECT i.id, INET_NTOA(i.ip) AS ip
FROM bm_ip_bans i
LEFT JOIN bm_players a
ON a.id = i.actor_id
WHERE a.id IS NULL;
This will tell you which ip ban is affected. You can delete it for now.