aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--text_file_functions.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/text_file_functions.cpp b/text_file_functions.cpp
index 2263fa18..b77e1788 100644
--- a/text_file_functions.cpp
+++ b/text_file_functions.cpp
@@ -579,5 +579,5 @@ bool AOApplication::get_blank_blip()
bool AOApplication::is_discord_enabled()
{
QString f_result = read_config("discord");
- return f_result.startsWith("true");
-} \ No newline at end of file
+ return !f_result.startsWith("false");
+}