From ffb0aea5eb79b58ebad1eee57ad097bc2aba0689 Mon Sep 17 00:00:00 2001 From: ILikeToCode <101745538+IL2C@users.noreply.github.com> Date: Mon, 26 Sep 2022 20:37:02 +0100 Subject: [PATCH] Fixed downloading hashtags (#1749) --- instaloader/structures.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/instaloader/structures.py b/instaloader/structures.py index 109c845..a084416 100644 --- a/instaloader/structures.py +++ b/instaloader/structures.py @@ -1550,7 +1550,7 @@ class Hashtag: def _obtain_metadata(self): if not self._has_full_metadata: - self._node = self._query({"__a": 1}) + self._node = self._query({"__a": 1, "__d": "dis"}) self._has_full_metadata = True def _asdict(self):