aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--mastodon/Mastodon.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/mastodon/Mastodon.py b/mastodon/Mastodon.py
index 1fb7d69..49db771 100644
--- a/mastodon/Mastodon.py
+++ b/mastodon/Mastodon.py
@@ -652,7 +652,8 @@ class Mastodon:
652 """ 652 """
653 Deletes a single notification 653 Deletes a single notification
654 """ 654 """
655 return self.__api_request('POST', '/api/v1/notifications/dismiss') 655 params = self.__generate_params(locals())
656 return self.__api_request('POST', '/api/v1/notifications/dismiss', params)
656 657
657 ### 658 ###
658 # Writing data: Accounts 659 # Writing data: Accounts
Powered by cgit v1.2.3 (git 2.41.0)