Fix overlooked rebasing error
Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
committed by
Julius Härtl
parent
03fc1fd0f2
commit
8cfaca8a75
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user