diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2016-04-28 20:47:01 +0200 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2016-04-28 20:47:01 +0200 |
commit | e9a2578e952a361b042fee45d211c6f88d89209e (patch) | |
tree | 0f5575d82b91f352694a9b3c241ce1ff8f5ae36c | |
parent | 8cfecb2ad70062edd448b00c57db241ad3d257cc (diff) | |
download | PeerTube-e9a2578e952a361b042fee45d211c6f88d89209e.tar.gz PeerTube-e9a2578e952a361b042fee45d211c6f88d89209e.tar.zst PeerTube-e9a2578e952a361b042fee45d211c6f88d89209e.zip |
I love semicolons (again).
-rw-r--r-- | client/angular/videos/components/watch/videos-watch.component.ts | 2 |
1 files changed, 1 insertions, 1 deletions
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 { | |||
64 | 64 | ||
65 | routerCanDeactivate(next: ComponentInstruction, prev: ComponentInstruction) : any { | 65 | routerCanDeactivate(next: ComponentInstruction, prev: ComponentInstruction) : any { |
66 | console.log('Removing video from webtorrent.'); | 66 | console.log('Removing video from webtorrent.'); |
67 | clearInterval(this._interval) | 67 | clearInterval(this._interval); |
68 | this.client.remove(this.video.magnetUri); | 68 | this.client.remove(this.video.magnetUri); |
69 | return true; | 69 | return true; |
70 | } | 70 | } |