about summary refs log tree commit diff stats
path: root/src/xmpp
diff options
context:
space:
mode:
authorMichael Vetter <jubalh@iodoru.org>2022-10-12 12:45:07 +0200
committerGitHub <noreply@github.com>2022-10-12 12:45:07 +0200
commitaa9ba63f5f5d29c80b6ffacb0315ece1b19da128 (patch)
treec0c78ed272bd8f7427c09cc48518c620b11c188e /src/xmpp
parent6a7c6195daddf39d20e287cdcb6afb6e9eea6e74 (diff)
parent2d11a35ee1975f015c1c4d7696d71a408178e5be (diff)
downloadprofani-tty-aa9ba63f5f5d29c80b6ffacb0315ece1b19da128.tar.gz
Merge pull request #1760 from techmetx11/fix/1759-async
Replace `call_external`'s implementation with an async one
Diffstat (limited to 'src/xmpp')
-rw-r--r--src/xmpp/avatar.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xmpp/avatar.c b/src/xmpp/avatar.c
index fb3b01ea..5ba2cb3b 100644
--- a/src/xmpp/avatar.c
+++ b/src/xmpp/avatar.c
@@ -346,7 +346,7 @@ _avatar_request_item_result_handler(xmpp_stanza_t* const stanza, void* const use
         } else {
             gchar** argv = format_call_external_argv(cmdtemplate, NULL, filename->str);
 
-            if (!call_external(argv, NULL, NULL)) {
+            if (!call_external(argv)) {
                 cons_show_error("Unable to display avatar: check the logs for more information.");
             }