1
0
mirror of https://github.com/instaloader/instaloader.git synced 2024-08-18 12:49:38 +02:00

Fix "Use --login ..." warning at startup

This commit is contained in:
Alexander Graf 2020-06-08 18:40:13 +02:00
parent e1567a0342
commit 8f9723cf62

View File

@ -197,7 +197,7 @@ def _main(instaloader: Instaloader, targetlist: List[str],
if len(profiles) > 1:
instaloader.context.log("Downloading {} profiles: {}".format(len(profiles),
' '.join([p.username for p in profiles])))
if ((profiles and download_profile_pic) or download_posts) and not instaloader.context.is_logged_in:
if profiles and (download_profile_pic or download_posts) and not instaloader.context.is_logged_in:
instaloader.context.error("Warning: Use --login to download higher-quality versions of pictures.")
instaloader.download_profiles(profiles,
download_profile_pic, download_posts, download_tagged, download_igtv,