diff options
author | Mole Shang <[email protected]> | 2023-08-09 17:29:15 +0800 |
---|---|---|
committer | Mole Shang <[email protected]> | 2023-08-09 17:30:30 +0800 |
commit | c636d2e78e464246b3dd7bc8ce0b8e5d8a5bf7a6 (patch) | |
tree | 3ca0539da181565257d41259cc8e539c469fe847 /src/ui.c | |
parent | c952d1663bf8d7e54926faab23ed2291c68b73f2 (diff) | |
download | hinata-c636d2e78e464246b3dd7bc8ce0b8e5d8a5bf7a6.tar.gz hinata-c636d2e78e464246b3dd7bc8ce0b8e5d8a5bf7a6.tar.bz2 hinata-c636d2e78e464246b3dd7bc8ce0b8e5d8a5bf7a6.zip |
process_url: set referer in the separate function
Diffstat (limited to 'src/ui.c')
-rw-r--r-- | src/ui.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -92,7 +92,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, NULL, NULL); + add_url(text, outPath, NULL, NULL, NULL); } else { LOG("NFD", "Please specify a valid file PATH to write to!\n"); } |