Fix download mode; download_request wasn't being passed properly
1 files changed, 1 insertions(+), 0 deletions(-) M src/main.zig
M src/main.zig => src/main.zig +1 -0
@@ 31,6 31,7 @@ pub fn main() !void { } else if (std.mem.startsWith(u8, arg, "-d")) { // -d: Downloader mode (non-video), runs cfg mode = .Download; + download_request = arg[2..]; } else if (std.mem.startsWith(u8, arg, "-e")) { // -e: Enable stderr debugging stderr_on = true;