mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
Use proper array setter
This commit is contained in:
parent
a515ecbada
commit
e051090904
@ -439,7 +439,7 @@ namespace Jellyfin.Data.Entities
|
||||
var parsedValue = converter.ConvertFromString(stringValues[i].Trim());
|
||||
if (parsedValue != null)
|
||||
{
|
||||
parsedValues.SetValue(parsedValue, convertedCount++);
|
||||
parsedValues[convertedCount++] = (T)parsedValue;
|
||||
}
|
||||
}
|
||||
catch (FormatException)
|
||||
|
Loading…
x
Reference in New Issue
Block a user