From 336828efbaa8bbadb717b9134e6e22e6d91e930f Mon Sep 17 00:00:00 2001 From: TDPI Date: Sun, 1 Mar 2026 16:28:11 +0100 Subject: [PATCH] fix: json fehler --- Jellyfin.Plugin.SmartNotify/Services/ItemHistoryService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jellyfin.Plugin.SmartNotify/Services/ItemHistoryService.cs b/Jellyfin.Plugin.SmartNotify/Services/ItemHistoryService.cs index 1586a13..3dbd7ee 100644 --- a/Jellyfin.Plugin.SmartNotify/Services/ItemHistoryService.cs +++ b/Jellyfin.Plugin.SmartNotify/Services/ItemHistoryService.cs @@ -247,7 +247,7 @@ public class ItemHistoryService : IDisposable Name = item.Name, FirstSeen = DateTime.UtcNow, FilePath = item.Path, - ProviderIdsJson = JsonSerializer.Serialize(item.ProviderIds ?? new Dictionary()) + ProviderIdsJson = System.Text.Json.JsonSerializer.Serialize(item.ProviderIds ?? new Dictionary()) }; if (item is Episode ep)