From: Chocobozzz Date: Thu, 28 Apr 2016 18:47:01 +0000 (+0200) Subject: I love semicolons (again). X-Git-Tag: v0.0.1-alpha~979 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=e9a2578e952a361b042fee45d211c6f88d89209e;p=oweals%2Fpeertube.git I love semicolons (again). --- diff --git a/client/angular/videos/components/watch/videos-watch.component.ts b/client/angular/videos/components/watch/videos-watch.component.ts index 9a8909b75..d2203727e 100644 --- a/client/angular/videos/components/watch/videos-watch.component.ts +++ b/client/angular/videos/components/watch/videos-watch.component.ts @@ -64,7 +64,7 @@ export class VideosWatchComponent implements OnInit, CanDeactivate { routerCanDeactivate(next: ComponentInstruction, prev: ComponentInstruction) : any { console.log('Removing video from webtorrent.'); - clearInterval(this._interval) + clearInterval(this._interval); this.client.remove(this.video.magnetUri); return true; }