We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2fc432b commit a9c8c76Copy full SHA for a9c8c76
pyrogram/__init__.py
@@ -16,7 +16,7 @@
16
# You should have received a copy of the GNU Lesser General Public License
17
# along with Pyrogram. If not, see <http://www.gnu.org/licenses/>.
18
19
-__version__ = "2.0.143"
+__version__ = "2.0.144"
20
__license__ = "GNU Lesser General Public License v3.0 (LGPL-3.0)"
21
__copyright__ = "Copyright (C) 2017-present Dan <https://github.com/delivrance>"
22
pyrogram/methods/chats/get_forum_topics_by_id.py
@@ -101,4 +101,4 @@ async def get_forum_topics_by_id(
101
chats=chats
102
))
103
104
- return topics if is_iterable else topics[0] if topics else None
+ return topics_list if is_iterable else topics_list[0] if topics_list else None
0 commit comments