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();
|
||||
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 + ";";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user