fix next link condition

This commit is contained in:
Nicolas Constant 2018-11-03 14:51:31 -04:00
parent a5fcc29c90
commit 503a209898
No known key found for this signature in database
GPG Key ID: 1E9F677FB01A5688
1 changed files with 1 additions and 0 deletions

View File

@ -63,6 +63,7 @@ export class StreamOverlayComponent implements OnInit {
const nextElement = this.nextElements.pop();
this.loadElement(nextElement);
if(this.nextElements.length === 0) this.canGoForward = false;
return false;
}