Apparently Linux does not like this.
This commit is contained in:
parent
d55f4b58cf
commit
53290b0d53
@ -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());
|
||||
|
@ -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();
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user