Refactored NetworkRequest and misc

This commit is contained in:
fourtf
2018-07-06 17:56:11 +02:00
parent 477d4751f7
commit 3993708164
8 changed files with 244 additions and 243 deletions
+1 -1
View File
@@ -213,7 +213,7 @@ void CompletionModel::clearExpiredStrings()
for (auto it = this->emotes_.begin(); it != this->emotes_.end();) {
const auto &taggedString = *it;
if (taggedString.HasExpired(now)) {
if (taggedString.isExpired(now)) {
// Log("String {} expired", taggedString.str);
it = this->emotes_.erase(it);
} else {