mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-07 10:14:14 -04:00
fix sync layout
This commit is contained in:
parent
5f71a615c4
commit
fd53e18ee9
@ -199,10 +199,7 @@ 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;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -220,10 +217,7 @@ 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;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user