mirror of https://gitlab.com/brutaldon/brutaldon
Correctly cancel out of (un)boosting or faving toots
This commit is contained in:
parent
804a4dfd67
commit
421d27ef07
|
@ -199,6 +199,7 @@ def fav(request, id):
|
|||
mastodon = get_mastodon(request)
|
||||
toot = mastodon.status(id)
|
||||
if request.method == 'POST':
|
||||
if not request.POST['cancel']:
|
||||
if toot.favourited:
|
||||
mastodon.status_unfavourite(id)
|
||||
else:
|
||||
|
@ -211,6 +212,7 @@ def boost(request, id):
|
|||
mastodon = get_mastodon(request)
|
||||
toot = mastodon.status(id)
|
||||
if request.method == 'POST':
|
||||
if not request.POST['cancel']:
|
||||
if toot.reblogged:
|
||||
mastodon.status_unreblog(id)
|
||||
else:
|
||||
|
|
Loading…
Reference in New Issue