fix: send ReleaseType as int not string in CmsTrackService.UpdateAsync
This commit is contained in:
@@ -340,7 +340,7 @@ public class CmsTrackService : ICmsTrackService
|
||||
genre,
|
||||
releaseDate,
|
||||
imagePath,
|
||||
releaseType = releaseType?.ToString(),
|
||||
releaseType = releaseType.HasValue ? (int?)releaseType.Value : null,
|
||||
trackNumber,
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user