mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-04 16:09:59 +00:00
fix: tag if condition (#1432)
This commit is contained in:
parent
46a8472001
commit
5527468258
1 changed files with 1 additions and 1 deletions
|
@ -19,7 +19,7 @@ const toggleFollowTag = async () => {
|
|||
tag.following = !tag.following
|
||||
|
||||
try {
|
||||
if (tag.following)
|
||||
if (previousFollowingState)
|
||||
await client.v1.tags.unfollow(tag.name)
|
||||
else
|
||||
await client.v1.tags.follow(tag.name)
|
||||
|
|
Loading…
Reference in a new issue