Update blank metadata values from null to undefined to match Chrome

This commit is contained in:
hensm
2019-07-14 09:46:05 +01:00
parent f2907cdc15
commit a62cb01e97
10 changed files with 84 additions and 84 deletions

View File

@@ -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;
}