aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLogan Fick <[email protected]>2017-07-31 00:29:45 -0400
committerLogan Fick <[email protected]>2017-07-31 00:29:45 -0400
commit5943038be3f10d87e6bf9fc6f141b417366cc871 (patch)
tree52a0ede6a4143a344e5830379118ef8a2120eef1 /mastodon
parent4e8743cc68356b472420a992524859b80c2c056f (diff)
downloadmastodon.py-5943038be3f10d87e6bf9fc6f141b417366cc871.tar.gz
Fixed clearing notifications raising endpoint not found.
Diffstat (limited to 'mastodon')
-rw-r--r--mastodon/Mastodon.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mastodon/Mastodon.py b/mastodon/Mastodon.py
index 7203c8a..3b186fe 100644
--- a/mastodon/Mastodon.py
+++ b/mastodon/Mastodon.py
@@ -592,7 +592,7 @@ class Mastodon:
592 """ 592 """
593 Clear out a users notifications 593 Clear out a users notifications
594 """ 594 """
595 return self.__api_request('GET', '/api/v1/notifications/clear') 595 return self.__api_request('POST', '/api/v1/notifications/clear')
596 596
597 ### 597 ###
598 # Writing data: Accounts 598 # Writing data: Accounts
Powered by cgit v1.2.3 (git 2.41.0)