From 5e2e190f3ed3ff108f906204ff9867235f37ef8e Mon Sep 17 00:00:00 2001 From: Claus Vium Date: Tue, 12 Feb 2019 21:30:52 +0100 Subject: [PATCH] Add key delimiter to avoid potential clashes --- MediaBrowser.Providers/TV/TheTVDB/TvDbClientManager.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MediaBrowser.Providers/TV/TheTVDB/TvDbClientManager.cs b/MediaBrowser.Providers/TV/TheTVDB/TvDbClientManager.cs index a3979bf422..66f692bd00 100644 --- a/MediaBrowser.Providers/TV/TheTVDB/TvDbClientManager.cs +++ b/MediaBrowser.Providers/TV/TheTVDB/TvDbClientManager.cs @@ -242,7 +242,7 @@ namespace MediaBrowser.Providers.TV.TheTVDB var objType = obj.GetType(); if (objType.IsPrimitive || objType == typeof(string)) { - key += obj.ToString(); + key += obj + ";"; } else { @@ -254,7 +254,7 @@ namespace MediaBrowser.Providers.TV.TheTVDB continue; } - key += propertyInfo.Name + currentValue; + key += propertyInfo.Name + currentValue + ";"; } } }