summaryrefslogtreecommitdiff
path: root/src/utils/stringfilter.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils/stringfilter.cpp')
-rw-r--r--src/utils/stringfilter.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/utils/stringfilter.cpp b/src/utils/stringfilter.cpp
index a75d8506..cbb075a4 100644
--- a/src/utils/stringfilter.cpp
+++ b/src/utils/stringfilter.cpp
@@ -79,7 +79,7 @@ void StringFilter::writeSlangFilterList()
bool StringFilter::filterContent(const std::string& text)
{
if (!mInitialized) {
- LOG_INFO("Slangs List is not initialized.", 2)
+ LOG_INFO("Slangs List is not initialized.", 2);
return true;
}
@@ -111,7 +111,7 @@ bool StringFilter::isEmailValid(const std::string& email)
if ((email.length() < MIN_EMAIL_LENGTH) ||
(email.length() > MAX_EMAIL_LENGTH))
{
- LOG_INFO(email << ": Email too short or too long.", 1)
+ LOG_INFO(email << ": Email too short or too long.", 1);
return false;
}