mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
Add key delimiter to avoid potential clashes
This commit is contained in:
parent
828434058f
commit
5e2e190f3e
@ -242,7 +242,7 @@ namespace MediaBrowser.Providers.TV.TheTVDB
|
|||||||
var objType = obj.GetType();
|
var objType = obj.GetType();
|
||||||
if (objType.IsPrimitive || objType == typeof(string))
|
if (objType.IsPrimitive || objType == typeof(string))
|
||||||
{
|
{
|
||||||
key += obj.ToString();
|
key += obj + ";";
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@ -254,7 +254,7 @@ namespace MediaBrowser.Providers.TV.TheTVDB
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
key += propertyInfo.Name + currentValue;
|
key += propertyInfo.Name + currentValue + ";";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user