mirror of
https://github.com/hensm/fx_cast.git
synced 2026-06-12 10:39:57 +00:00
Fix chrome.cast.media class implementations
This commit is contained in:
@@ -1,17 +1,22 @@
|
||||
"use strict";
|
||||
|
||||
import { MetadataType } from "../enums";
|
||||
|
||||
export default class MusicTrackMediaMetadata {
|
||||
constructor () {
|
||||
this.albumArtist = null;
|
||||
this.albumName = null;
|
||||
this.artist = null;
|
||||
this.artistName = null;
|
||||
this.composer = null;
|
||||
this.discNumber = null;
|
||||
this.images = [];
|
||||
this.metadataType = this.type = 3;
|
||||
this.images = null;
|
||||
this.metadataType = MetadataType.MUSIC_TRACK;
|
||||
this.releaseDate = null;
|
||||
this.releaseYear = null;
|
||||
this.songName = null;
|
||||
this.title = null;
|
||||
this.trackNumber = null;
|
||||
this.type = MetadataType.MUSIC_TRACK;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user