Skip to content
Snippets Groups Projects
Commit 52e72004 authored by fryshorts's avatar fryshorts
Browse files

Fix typo in log upload

parent 5fa6dbe2
No related branches found
No related tags found
No related merge requests found
...@@ -1788,7 +1788,7 @@ void OBSBasic::UploadLog(const char *file) ...@@ -1788,7 +1788,7 @@ void OBSBasic::UploadLog(const char *file)
obs_data_set_obj(request.get(), "files", files.get()); obs_data_set_obj(request.get(), "files", files.get());
const char *json = obs_data_get_json(request.get()); const char *json = obs_data_get_json(request.get());
if (json) { if (!json) {
blog(LOG_ERROR, "Failed to get JSON data for log upload"); blog(LOG_ERROR, "Failed to get JSON data for log upload");
return; return;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment