Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Sign In with Facebook Sign In with Google Sign In with OpenID Sign In with Twitter

Categories

Who's Online 7

CurtisOdenRajioericgillettefh111tc74 +2 guests

Small bug in voting.js

This discussion is related to the Voting addon.
When the follower equal 1 and if this follower is you and when you click for cancel your follow, server will return -1
i have changed line no. 85 to fix it

count = json.State ? ++count : --count;
to
count = json.State ? ++count : (count ? --count : 0);

refer to v1.1.1b
Sign In or Register to comment.