From 451e3f00c802b832c21b385c8d91a125a499a2e1 Mon Sep 17 00:00:00 2001 From: sephrat <34862846+sephrat@users.noreply.github.com> Date: Wed, 17 Aug 2022 09:02:15 +0200 Subject: [PATCH] fix: Fix conflicting property name for Swagger --- src/Ombi.Api.Plex/Models/Metadata.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Ombi.Api.Plex/Models/Metadata.cs b/src/Ombi.Api.Plex/Models/Metadata.cs index 97cab391b..d473e44f8 100644 --- a/src/Ombi.Api.Plex/Models/Metadata.cs +++ b/src/Ombi.Api.Plex/Models/Metadata.cs @@ -39,6 +39,7 @@ namespace Ombi.Api.Plex.Models public string grandparentTheme { get; set; } public string chapterSource { get; set; } public Medium[] Media { get; set; } + [JsonProperty("Guid")] // force uppercase to solve conflict with lowercase guid public List Guid { get; set; } = new List(); }