Ignore:
Timestamp:
11/14/21 13:58:42 (3 years ago)
Author:
Стојков Марко <mst@…>
Branches:
dev
Children:
f3c4950
Parents:
e071d30
Message:

Fixed bug when voting an answer

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/FinkiChattery/FinkiChattery.Api/ApplicationServices/Questioning/EventHandlers/UpdateAnswerVotesEventHandler.cs

    re071d30 rfcc3080  
    3030                case VoteType.Upvote:
    3131                    answer.VotesCount++;
     32
     33                    if (notification.VoteAlreadyExists)
     34                    {
     35                        answer.VotesCount++;
     36                    }
    3237                    break;
    3338                case VoteType.Downvote:
    3439                    answer.VotesCount--;
     40                    if (notification.VoteAlreadyExists)
     41                    {
     42                        answer.VotesCount--;
     43                    }
    3544                    break;
    3645            }
Note: See TracChangeset for help on using the changeset viewer.