[FIX] Fix statuses

This commit is contained in:
LDA 2024-07-11 00:43:44 +02:00
commit c349b37f60
2 changed files with 25 additions and 28 deletions

View file

@ -678,7 +678,6 @@ ASUpload(const ParseeConfig *c, Stream *from, unsigned int size, char *mime)
{
JsonEncode(reply, StreamStdout(), JSON_PRETTY);
StreamFlush(StreamStdout());
Log(LOG_INFO, "Less obvious upload fail");
}
HttpClientContextFree(ctx);
JsonFree(reply);
@ -953,7 +952,7 @@ ASSetStatus(const ParseeConfig *c, char *user, UserStatus status, char *msg)
HashMap *request;
char *path;
char *status_str = NULL;
if (!c || !user || !msg)
if (!c || !user)
{
return;
}