Apparently Linux does not like this.

This commit is contained in:
Salanto 2021-05-12 00:25:13 +02:00
parent d55f4b58cf
commit 53290b0d53
2 changed files with 2 additions and 2 deletions

View File

@ -42,7 +42,7 @@ void Discord::postModcallWebhook(QString name, QString reason, int current_area)
};
jsonArray.append(jsonObject);
json["embeds"] = jsonArray;
if (server->webhook_content != NULL)
if (server->webhook_content != "")
json["content"] = server->webhook_content;
nam->post(request, QJsonDocument(json).toJson());

View File

@ -311,7 +311,7 @@ void Server::loadServerConfig()
webhook_enabled = config.value("webhook_enabled", "false").toBool();
webhook_url = config.value("webhook_url", "Your webhook url here.").toString();
webhook_sendfile = config.value("webhook_sendfile", false).toBool();
webhook_content = config.value("webhook_content", NULL).toString();
webhook_content = config.value("webhook_content", "").toString();
config.endGroup();
}