Merge pull request #5735 from tsiegleauq/trim-vjs-strings

Trim livestream URL
This commit is contained in:
Emanuel Schütze 2020-12-03 11:33:05 +01:00 committed by GitHub
commit 85de17611f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ export class VjsPlayerComponent implements OnInit, OnDestroy {
@Input()
public set videoUrl(value: string) {
this._videoUrl = value;
this._videoUrl = value.trim();
this.checkVideoUrl();
}