mirror of
https://github.com/bitwarden/server.git
synced 2025-07-16 23:27:30 -05:00
Enable Nullable In Auth Repositories (#4600)
This commit is contained in:
@ -388,6 +388,8 @@ public static class CoreHelpers
|
||||
/// <returns>Base64 standard formatted string</returns>
|
||||
public static string TransformFromBase64Url(string input)
|
||||
{
|
||||
// TODO: .NET 9 Ships Base64Url in box, investigate replacing this usage with that
|
||||
// Ref: https://github.com/dotnet/runtime/pull/102364
|
||||
var output = input;
|
||||
// 62nd char of encoding
|
||||
output = output.Replace('-', '+');
|
||||
|
Reference in New Issue
Block a user