Fix overlooked rebasing error

Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
Julius Härtl
2017-11-17 11:19:21 +01:00
committed by Julius Härtl
parent 03fc1fd0f2
commit 8cfaca8a75

View File

@@ -47,12 +47,9 @@ app.factory('StatusService', function () {
}; };
StatusService.prototype.releaseWaiting = function () { StatusService.prototype.releaseWaiting = function () {
if (this.counter > 0) if (this.counter > 0) {
<<<<<<< HEAD
{this.counter--;}
=======
this.counter--; this.counter--;
>>>>>>> Refactor boardlist loading process }
if (this.counter <= 0) { if (this.counter <= 0) {
this.active = false; this.active = false;
this.counter = 0; this.counter = 0;