mirror of
https://github.com/lidarr/Lidarr
synced 2025-02-25 15:22:42 +00:00
Fixed typo in Cleanse IP
This commit is contained in:
parent
312c3b786e
commit
e59bf51b45
1 changed files with 1 additions and 1 deletions
|
@ -83,7 +83,7 @@ private static string CleanseRemoteIP(Match match)
|
||||||
var postfix = match.Value.Substring(group.Index + group.Length - match.Index);
|
var postfix = match.Value.Substring(group.Index + group.Length - match.Index);
|
||||||
var items = valueIP.Split('.');
|
var items = valueIP.Split('.');
|
||||||
|
|
||||||
return $"{prefix}{items[0]}.*.*.{items[0]}{postfix}";
|
return $"{prefix}{items[0]}.*.*.{items[3]}{postfix}";
|
||||||
}
|
}
|
||||||
|
|
||||||
return match.Value;
|
return match.Value;
|
||||||
|
|
Loading…
Reference in a new issue