mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-15 09:59:06 -07:00
Use reader.GetString instead of indexing
This commit is contained in:
parent
e7c05dcfaf
commit
f48eaccc51
@ -1300,7 +1300,7 @@ namespace Emby.Server.Implementations.Data
|
|||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
item = _jsonSerializer.DeserializeFromString(reader[1].ToString(), type) as BaseItem;
|
item = _jsonSerializer.DeserializeFromString(reader.GetString(1), type) as BaseItem;
|
||||||
}
|
}
|
||||||
catch (SerializationException ex)
|
catch (SerializationException ex)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user