1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-28 05:46:38 +02:00

relay: remove extra space in JSON authentication error

This commit is contained in:
Sébastien Helleu
2025-01-07 07:28:45 +01:00
parent 9d3388b09e
commit 60422ca6b1
2 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -1340,7 +1340,7 @@ relay_http_send_error_json (struct t_relay_client *client,
if (!error_msg)
goto end;
if (weechat_asprintf (&json, "{\"error\": \"%s\"}", error_msg) < 0)
if (weechat_asprintf (&json, "{\"error\":\"%s\"}", error_msg) < 0)
goto end;
num_bytes = relay_http_send_json (client, return_code, message, headers,