1
0
mirror of https://github.com/anope/anope.git synced 2026-06-30 20:06:39 +02:00

Fix a missing format argument in ns_maxemail.

This commit is contained in:
Sadie Powell
2025-03-22 21:45:29 +00:00
parent a40eaeb2a3
commit 25c3fd51b7
+1 -1
View File
@@ -45,7 +45,7 @@ class NSMaxEmail final
if (this->CountEmail(email, ignoreself ? source.GetAccount() : NULL) < NSEmailMax)
return false;
source.Reply(NSEmailMax, N_("The email address \002%s\002 has reached its usage limit of %u user.", "The email address \002%s\002 has reached its usage limit of %u users."), email.c_str());
source.Reply(NSEmailMax, N_("The email address \002%s\002 has reached its usage limit of %u user.", "The email address \002%s\002 has reached its usage limit of %u users."), email.c_str(), NSEmailMax);
return true;
}