mirror of
https://forge.fsky.io/lda/Parsee.git
synced 2026-03-14 00:35:11 +00:00
[FIX] Fix statuses
This commit is contained in:
parent
9039f0ce69
commit
c349b37f60
2 changed files with 25 additions and 28 deletions
3
src/AS.c
3
src/AS.c
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue