1
0
mirror of https://github.com/anope/anope.git synced 2026-07-02 02:46:39 +02:00

Use a set instead of a vector for storing memo ignores.

This commit is contained in:
Sadie Powell
2025-03-19 10:12:02 +00:00
parent 1fc2642034
commit e86fa67e38
5 changed files with 6 additions and 14 deletions
+1 -1
View File
@@ -1247,7 +1247,7 @@ private:
return false;
}
nc->memos.ignores.push_back(ignored);
nc->memos.ignores.insert(ignored);
return true;
}