Fixed typo in Cleanse IP

This commit is contained in:
Taloth Saldono 2020-06-03 18:33:00 +02:00
parent b3daa280c5
commit 57cca9fcdc
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ namespace NzbDrone.Common.Instrumentation
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;