mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-24 01:34:45 +03:00
fix case sensitive file names
This commit is contained in:
@@ -43,6 +43,10 @@ namespace MediaBrowser.Providers.Manager
|
||||
if (replaceData || string.IsNullOrEmpty(target.HomePageUrl))
|
||||
{
|
||||
target.HomePageUrl = source.HomePageUrl;
|
||||
if (!string.IsNullOrWhiteSpace(target.HomePageUrl) && target.HomePageUrl.IndexOf("http", StringComparison.OrdinalIgnoreCase) != 0)
|
||||
{
|
||||
target.HomePageUrl = "http://" + target.HomePageUrl;
|
||||
}
|
||||
}
|
||||
|
||||
if (replaceData || !target.IndexNumber.HasValue)
|
||||
|
||||
Reference in New Issue
Block a user