1
0
mirror of https://github.com/anope/anope.git synced 2026-07-03 13:03:14 +02:00

Fix some inconsistencies with account lookups.

This commit is contained in:
Sadie Powell
2025-05-17 15:05:13 +01:00
parent 0fc1eb3133
commit d3bb930a5e
4 changed files with 11 additions and 11 deletions
+1 -1
View File
@@ -78,7 +78,7 @@ Serializable *AutoKick::Type::Unserialize(Serializable *obj, Serialize::Data &da
ak = anope_dynamic_static_cast<AutoKick *>(obj);
data["creator"] >> ak->creator;
data["reason"] >> ak->reason;
ak->nc = NickCore::Find(snc);
ak->nc = nc;
data["mask"] >> ak->mask;
data["addtime"] >> ak->addtime;
data["last_used"] >> ak->last_used;