diff options
author | Michael Vetter <jubalh@iodoru.org> | 2022-10-12 12:45:07 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-12 12:45:07 +0200 |
commit | aa9ba63f5f5d29c80b6ffacb0315ece1b19da128 (patch) | |
tree | c0c78ed272bd8f7427c09cc48518c620b11c188e /src/xmpp | |
parent | 6a7c6195daddf39d20e287cdcb6afb6e9eea6e74 (diff) | |
parent | 2d11a35ee1975f015c1c4d7696d71a408178e5be (diff) | |
download | profani-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.c | 2 |
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."); } |