Fixes a typo in LikeService's delete function that prevents the unlike

function from working properly

Signed-off-by: Cyrille Bollu <cyrille@bollu.be>
pull/655/head
Cyrille Bollu 2019-07-22 12:08:56 +02:00
rodzic 5457de989d
commit 2911135d64
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -198,7 +198,7 @@ class LikeService {
} catch (ItemNotFoundException $e) {
}
$this->streamActionService->setActionBool($actor->getId(), $postId, 'boosted', false);
$this->streamActionService->setActionBool($actor->getId(), $postId, 'liked', false);
return $undo;
}