mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-17 06:23:03 +03:00
fix sync layout
This commit is contained in:
@@ -198,13 +198,10 @@ namespace MediaBrowser.XbmcMetadata.Parsers
|
|||||||
|
|
||||||
// int.TryParse is local aware, so it can be probamatic, force us culture
|
// int.TryParse is local aware, so it can be probamatic, force us culture
|
||||||
if (int.TryParse(val, NumberStyles.Integer, UsCulture, out rval))
|
if (int.TryParse(val, NumberStyles.Integer, UsCulture, out rval))
|
||||||
{
|
|
||||||
if ((item.ParentIndexNumber ?? 0) == 0)
|
|
||||||
{
|
{
|
||||||
item.AirsBeforeSeasonNumber = rval;
|
item.AirsBeforeSeasonNumber = rval;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@@ -219,13 +216,10 @@ namespace MediaBrowser.XbmcMetadata.Parsers
|
|||||||
|
|
||||||
// int.TryParse is local aware, so it can be probamatic, force us culture
|
// int.TryParse is local aware, so it can be probamatic, force us culture
|
||||||
if (int.TryParse(val, NumberStyles.Integer, UsCulture, out rval))
|
if (int.TryParse(val, NumberStyles.Integer, UsCulture, out rval))
|
||||||
{
|
|
||||||
if ((item.ParentIndexNumber ?? 0) == 0)
|
|
||||||
{
|
{
|
||||||
item.AirsBeforeEpisodeNumber = rval;
|
item.AirsBeforeEpisodeNumber = rval;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user