fix missing site param from downloadUsers
This commit is contained in:
parent
394370fb55
commit
12bdb50787
2 changed files with 3 additions and 0 deletions
|
@ -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}`
|
||||
|
|
|
@ -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,
|
||||
});
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue