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

Let anonymous loader inherit all options

This commit is contained in:
Alexander Graf 2017-07-20 15:24:57 +02:00
parent 7198f1ad9f
commit dd513f7190

View File

@ -847,9 +847,9 @@ class Instaloader:
except ProfileNotExistsException as err:
if username is not None:
self._log(err)
self._log(
"Trying again anonymously, helps in case you are just blocked.")
anonymous_loader = Instaloader(self.sleep, self.quiet, self.shorter_output)
self._log("Trying again anonymously, helps in case you are just blocked.")
anonymous_loader = Instaloader(self.sleep, self.quiet, self.shorter_output,
self.profile_subdirs, self.user_agent)
anonymous_loader.download(target, profile_pic_only, download_videos,
geotags, fast_update)
else: