diff options
Diffstat (limited to 'client/angular')
-rw-r--r-- | client/angular/videos/components/watch/videos-watch.component.ts | 3 |
1 files changed, 2 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 da7f942db..1a17e2b1a 100644 --- a/client/angular/videos/components/watch/videos-watch.component.ts +++ b/client/angular/videos/components/watch/videos-watch.component.ts | |||
@@ -39,8 +39,9 @@ export class VideosWatchComponent implements OnInit, CanDeactivate { | |||
39 | 39 | ||
40 | loadVideo(video: Video) { | 40 | loadVideo(video: Video) { |
41 | this.video = video; | 41 | this.video = video; |
42 | 42 | console.log('Adding ' + this.video.magnetUri + '.'); | |
43 | this.client.add(this.video.magnetUri, (torrent) => { | 43 | this.client.add(this.video.magnetUri, (torrent) => { |
44 | console.log('Added ' + this.video.magnetUri + '.'); | ||
44 | torrent.files[0].appendTo(this._elementRef.nativeElement, (err) => { | 45 | torrent.files[0].appendTo(this._elementRef.nativeElement, (err) => { |
45 | if (err) { | 46 | if (err) { |
46 | alert('Cannot append the file.'); | 47 | alert('Cannot append the file.'); |