mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-10 23:33:38 -07:00
Fixed: Missing album types, typos in type/status (#593)
* Fixed: Missing album types, typos in type/status * Update SecondaryAlbumType.cs
This commit is contained in:
parent
e4e677eea2
commit
0e124af6ce
2 changed files with 5 additions and 4 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue