mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-04-24 14:08:44 -04:00
Use proper array setter
This commit is contained in:
parent
a515ecbada
commit
e051090904
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue