Fix player marker follow not getting released correctly

This commit is contained in:
Blue (Lukas Rieger) 2020-08-17 02:05:48 +02:00
parent c56971660f
commit 0b55274eda
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,7 @@ export default class PlayerMarker extends Marker {
onStopFollowing = event => {
if(this.follow) {
this.follow = true;
this.follow = false;
this.iconElement.removeClass("following");
}
};