diff --git a/client/app/videos/video-add/video-add.component.ts b/client/app/videos/video-add/video-add.component.ts index b11475ae9..eb10aedeb 100644 --- a/client/app/videos/video-add/video-add.component.ts +++ b/client/app/videos/video-add/video-add.component.ts @@ -25,9 +25,9 @@ export class VideoAddComponent implements OnInit { private form: any; constructor( - private router: Router, + private authService: AuthService, private elementRef: ElementRef, - private authService: AuthService + private router: Router ) {} ngOnInit() { @@ -62,8 +62,8 @@ export class VideoAddComponent implements OnInit { } uploadFile() { - this.form.headers = this.authService.getRequestHeader().toJSON(); this.form.formData = jQuery(this.elementRef.nativeElement).find('form').serializeArray(); + this.form.headers = this.authService.getRequestHeader().toJSON(); this.form.submit(); } } diff --git a/client/app/videos/video-list/video-list.component.html b/client/app/videos/video-list/video-list.component.html index edbbaf3ae..80b1e7b1b 100644 --- a/client/app/videos/video-list/video-list.component.html +++ b/client/app/videos/video-list/video-list.component.html @@ -6,7 +6,7 @@