1
0
mirror of https://github.com/anope/anope.git synced 2026-06-12 19:14:47 +02:00

Always use the same stats object when deserialising stats.

Closes #509.
This commit is contained in:
Sadie Powell
2025-05-10 10:22:38 +01:00
parent 49f93b7670
commit 0bf14650fa
+1 -1
View File
@@ -42,7 +42,7 @@ struct StatsType final
{
data["maxusercnt"] >> MaxUserCount;
data["maxusertime"] >> MaxUserTime;
return obj;
return Stats::me;
}
};