Fixed: Missing album types, typos in type/status (#593)

* Fixed: Missing album types, typos in type/status

* Update SecondaryAlbumType.cs
pull/596/head
Qstick 5 years ago committed by GitHub
parent e4e677eea2
commit 0e124af6ce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -63,7 +63,7 @@ namespace NzbDrone.Core.Music
}
public static ReleaseStatus Official => new ReleaseStatus(0, "Official");
public static ReleaseStatus Promotional => new ReleaseStatus(1, "Promotional");
public static ReleaseStatus Promotion => new ReleaseStatus(1, "Promotion");
public static ReleaseStatus Bootleg => new ReleaseStatus(2, "Bootleg");
public static ReleaseStatus Pseudo => new ReleaseStatus(3, "Pseudo");
@ -71,7 +71,7 @@ namespace NzbDrone.Core.Music
public static readonly List<ReleaseStatus> All = new List<ReleaseStatus>
{
Official,
Promotional,
Promotion,
Bootleg,
Pseudo
};

@ -70,7 +70,7 @@ namespace NzbDrone.Core.Music
public static SecondaryAlbumType Audiobook => new SecondaryAlbumType(5, "Audiobook");
public static SecondaryAlbumType Live => new SecondaryAlbumType(6, "Live");
public static SecondaryAlbumType Remix => new SecondaryAlbumType(7, "Remix");
public static SecondaryAlbumType DJMix => new SecondaryAlbumType(8, "DJ-Mix");
public static SecondaryAlbumType DJMix => new SecondaryAlbumType(8, "DJ-mix");
public static SecondaryAlbumType Mixtape => new SecondaryAlbumType(9, "Mixtape/Street");
public static SecondaryAlbumType Demo => new SecondaryAlbumType(10, "Demo");
@ -85,7 +85,8 @@ namespace NzbDrone.Core.Music
Live,
Remix,
DJMix,
Mixtape
Mixtape,
Demo
};

Loading…
Cancel
Save