From f6a17a25f7f8006523b537e043b05408c4ccbca9 Mon Sep 17 00:00:00 2001 From: Kay Faraday Date: Sat, 1 Jan 2022 22:49:40 +0000 Subject: [PATCH] fix for the prev commit --- pleroma.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pleroma.py b/pleroma.py index 8d8bb74..6b984e7 100644 --- a/pleroma.py +++ b/pleroma.py @@ -72,6 +72,8 @@ class Pleroma: except KeyError: raise LoginFailed(me) + return self._logged_in_id + async def following(self, account_id=None): account_id = account_id or await self._get_logged_in_id() return await self.request('GET', f'/api/v1/accounts/{account_id}/following')