mirror of
https://github.com/hensm/fx_cast.git
synced 2026-06-12 18:39:58 +00:00
Fix chrome.cast.media class implementations
This commit is contained in:
@@ -1,13 +1,20 @@
|
||||
"use strict";
|
||||
|
||||
import { MetadataType } from "../enums";
|
||||
|
||||
export default class TvShowMediaMetadata {
|
||||
constructor () {
|
||||
this.episode = null;
|
||||
this.images = [];
|
||||
this.metadataType = null;
|
||||
this.episodeNumber = null;
|
||||
this.episodeTitle = null;
|
||||
this.images = null;
|
||||
this.metadataType = MetadataType.TV_SHOW;
|
||||
this.originalAirdate = null;
|
||||
this.releaseYear = null;
|
||||
this.season = null;
|
||||
this.seasonNumber = null;
|
||||
this.seriesTitle = null;
|
||||
this.title = null;
|
||||
this.type = MetadataType.TV_SHOW;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user