Skip to content

Commit

Permalink
fix access token lookup
Browse files Browse the repository at this point in the history
  • Loading branch information
Lincoln Stein authored and psychedelicious committed Jul 3, 2024
1 parent 7c01b69 commit a11dc62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion invokeai/app/services/download/download_default.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ def multifile_download(
job = DownloadJob(
source=url,
dest=path,
access_token=access_token,
access_token=access_token or self._lookup_access_token(url),
)
mfdj.download_parts.add(job)
self._download_part2parent[job.source] = mfdj
Expand Down

0 comments on commit a11dc62

Please sign in to comment.