Merge pull request #3199 from msdeibel/3195_AlbumCoverUrls

Fixes issue #3195
This commit is contained in:
Jamie 2019-10-12 18:21:34 +01:00 committed by GitHub
commit c13958980e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 85 additions and 8 deletions

View file

@ -128,5 +128,10 @@ namespace Ombi.Helpers
{
return string.Concat(str.Where(c => !chars.Contains(c)));
}
public static string ToHttpsUrl(this string currentUrl)
{
return currentUrl.Replace("http://", "https://");
}
}
}