fix: send ReleaseType as int not string in CmsTrackService.UpdateAsync

This commit is contained in:
daniel-c-harvey
2026-06-11 08:49:00 -04:00
parent bd6bd4d827
commit 489215e415
+1 -1
View File
@@ -340,7 +340,7 @@ public class CmsTrackService : ICmsTrackService
genre,
releaseDate,
imagePath,
releaseType = releaseType?.ToString(),
releaseType = releaseType.HasValue ? (int?)releaseType.Value : null,
trackNumber,
};