1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-11-03 19:37:16 -05:00

Fix wrong order of arguments for _url_http_method

This commit is contained in:
William Wennerström 2020-12-07 16:38:05 +01:00
parent 5c5b4d7025
commit 332dc87ca5
No known key found for this signature in database
GPG Key ID: E1382990BEDD319B

View File

@ -9105,7 +9105,7 @@ _url_external_method(const char* cmd_template, const char* url, const char* file
if (!call_external(argv, NULL, NULL)) {
cons_show_error("Unable to call external executable for url: check the logs for more information.");
} else {
cons_show("URL '%s' has been called with '%s'.", cmd_template);
cons_show("URL '%s' has been called with '%s'.", url, cmd_template);
}
g_strfreev(argv);
@ -9199,7 +9199,7 @@ cmd_url_save(ProfWin* window, const char* const command, gchar** args)
if (cmd_template == NULL) {
if (g_strcmp0(scheme, "http") == 0
|| g_strcmp0(scheme, "https") == 0) {
_url_http_method(window, url, filename, cmd_template);
_url_http_method(window, cmd_template, url, filename);
#ifdef HAVE_OMEMO
} else if (g_strcmp0(scheme, "aesgcm") == 0) {
_url_aesgcm_method(window, cmd_template, url, filename);