fixed bug where video titles were used instead of IDs for the player component

fixed bug that caused a crash when no subscriptions existed
This commit is contained in:
Isaac Grynsztein
2020-03-09 01:19:16 -04:00
parent 74cda25c63
commit bb925ac0c8
3 changed files with 4 additions and 2 deletions

View File

@@ -52,7 +52,7 @@ export class SubscriptionFileCardComponent implements OnInit {
}
goToFile() {
this.goToFileEmit.emit(this.file.title);
this.goToFileEmit.emit(this.file.id);
}
deleteAndRedownload() {