diff options
author | Mole Shang <[email protected]> | 2023-08-06 22:18:31 +0800 |
---|---|---|
committer | Mole Shang <[email protected]> | 2023-08-06 22:18:31 +0800 |
commit | 189fba5a4b63706575f9287cd0b1760a331d636e (patch) | |
tree | 40ed29ac9a5ac711dfeb9586e82e620da11fe1ef /src/ui.c | |
parent | 99eded34e119d5b88d5210a617ecc35ba7347306 (diff) | |
download | hinata-189fba5a4b63706575f9287cd0b1760a331d636e.tar.gz hinata-189fba5a4b63706575f9287cd0b1760a331d636e.tar.bz2 hinata-189fba5a4b63706575f9287cd0b1760a331d636e.zip |
process_url: initial callback support
Diffstat (limited to 'src/ui.c')
-rw-r--r-- | src/ui.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -57,7 +57,7 @@ void load_ui(struct ui_struct *ui) { if (outPath) { DEBUG_PRINT("tinyfd gets outPath: %s\n", outPath); append_log("Got URL: %s\n", text); - add_url(text, outPath, NULL, NULL); + add_url(text, outPath, NULL, NULL, NULL, NULL); } else { LOG("NFD", "Please specify a valid file PATH to write to!\n"); } |