1
0
Fork 0

fix missing site param from downloadUsers

This commit is contained in:
lightling 2025-01-21 20:41:45 -05:00
parent 394370fb55
commit 12bdb50787
2 changed files with 3 additions and 0 deletions

View file

@ -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}`

View file

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