mirror of
https://github.com/hensm/fx_cast.git
synced 2026-06-12 18:39:58 +00:00
Update blank metadata values from null to undefined to match Chrome
This commit is contained in:
@@ -6,12 +6,12 @@ import { MetadataType } from "../enums";
|
||||
|
||||
|
||||
export default class MovieMediaMetadata {
|
||||
public images: Image[] = null;
|
||||
public images: Image[] = undefined;
|
||||
public metadataType: number = MetadataType.MOVIE;
|
||||
public releaseDate: string = null;
|
||||
public releaseYear: number = null;
|
||||
public studio: string = null;
|
||||
public subtitle: string = null;
|
||||
public title: string = null;
|
||||
public releaseDate: string = undefined;
|
||||
public releaseYear: number = undefined;
|
||||
public studio: string = undefined;
|
||||
public subtitle: string = undefined;
|
||||
public title: string = undefined;
|
||||
public type: number = MetadataType.MOVIE;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user