mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-08-27 04:08:33 +00:00
Fix some warnings in Emby.Server.Implementations
This commit is contained in:
parent
df739b5b2f
commit
7060934792
32 changed files with 181 additions and 128 deletions
|
|
@ -78,7 +78,7 @@ namespace Emby.Server.Implementations.HttpClientManager
|
|||
if (!string.IsNullOrWhiteSpace(userInfo))
|
||||
{
|
||||
_logger.LogWarning("Found userInfo in url: {0} ... url: {1}", userInfo, url);
|
||||
url = url.Replace(userInfo + '@', string.Empty);
|
||||
url = url.Replace(userInfo + '@', string.Empty, StringComparison.Ordinal);
|
||||
}
|
||||
|
||||
var request = new HttpRequestMessage(method, url);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue