mirror of
https://github.com/bitwarden/server.git
synced 2025-06-30 15:42:48 -05:00
[PM-3561] Clean the return url of any whitespace (#3696)
* clean the return url of any whitespace * ReplaceWhiteSpace helper * tests for ReplaceWhiteSpace helper --------- Co-authored-by: Matt Bishop <mbishop@bitwarden.com>
This commit is contained in:
@ -31,6 +31,7 @@ public static class CoreHelpers
|
||||
private static readonly DateTime _max = new DateTime(9999, 1, 1, 0, 0, 0, DateTimeKind.Utc);
|
||||
private static readonly Random _random = new Random();
|
||||
private static readonly string RealConnectingIp = "X-Connecting-IP";
|
||||
private static readonly Regex _whiteSpaceRegex = new Regex(@"\s+");
|
||||
|
||||
/// <summary>
|
||||
/// Generate sequential Guid for Sql Server.
|
||||
@ -868,4 +869,9 @@ public static class CoreHelpers
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
public static string ReplaceWhiteSpace(string input, string newValue)
|
||||
{
|
||||
return _whiteSpaceRegex.Replace(input, newValue);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user