From 12bdb507877d72c590c2cb76ed20b8374c32aca9 Mon Sep 17 00:00:00 2001 From: Lightling Date: Tue, 21 Jan 2025 20:41:45 -0500 Subject: [PATCH] fix missing site param from downloadUsers --- README.md | 1 + run-downloadUsers.js | 2 ++ 2 files changed, 3 insertions(+) diff --git a/README.md b/README.md index 4e3465d..dea8eb0 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,7 @@ This repo uses its own `config.json` in order to save media in the same format a Runs a full download of all users listed in the db.json of the archive (the provided `--path`). If db.json is not present, one will be created. If any user ends on skipped media during the `/media` check, the `/search` check will be skipped. Args: +- `--site={"twitter"|"bluesky"}` - `--path={/path/to/your/archive}` - `--threads={#}` - `--args={gallery-dl args}` diff --git a/run-downloadUsers.js b/run-downloadUsers.js index 6b88534..a2b9ab0 100644 --- a/run-downloadUsers.js +++ b/run-downloadUsers.js @@ -65,6 +65,7 @@ const downloadUsers = async () => { threadMax, directory, mode: 'media', + site, }); if (site === SITES.TWITTER) { @@ -74,6 +75,7 @@ const downloadUsers = async () => { threadMax, directory, mode: 'search', + site, }); }