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, }); }