Bugfix api/plex/playing #21 #23

Merged
KevinMidboe merged 5 commits from bugfix_api/plex/playing into master 2017-09-07 21:57:42 +00:00
Showing only changes of commit a8c6850863 - Show all commits

View File

@@ -1,12 +1,14 @@
class MediaInfo { class MediaInfo {
constructor(device, platform) { constructor() {
this.device = undefined; this.duration = undefined;
this.platform = undefined; this.height = undefined;
this.ip = undefined; this.width = undefined;
this.product = undefined; this.bitrate = undefined;
this.title = undefined; this.resolution = undefined;
this.state = undefined; this.framerate = undefined;
this.protocol = undefined;
this.container = undefined;
this.audioCodec = undefined;
} }
} }