This hook can be used for doing some action once the user changes own vote for the comment.
Changelog
since 7.0.0 version
Parameters
1. $voteType (type: int) - the type of the vote (like or dislike)
2. $isUserVoted (type: string) - if the user previously voted or not
3. $comment (type: WP_Comment object) - the object of the comment
2. $isUserVoted (type: string) - if the user previously voted or not
3. $comment (type: WP_Comment object) - the object of the comment
Usage
add_action("wpdiscuz_update_vote", function ($voteType, $isUserVoted, $comment) {
if ($comment->user_id) {
update_user_meta($comment->user_id, "user_votes", intval(get_user_meta($comment->user_id, "user_votes", true)) + $voteType);
}
}, 10, 3);