Remove $ from beining of cookie variables
This commit is contained in:
parent
b5be1f350b
commit
12d7d6793e
@ -314,7 +314,7 @@ public class AuthService(IServiceProvider serviceProvider) : IAuthService
|
||||
}
|
||||
|
||||
string cookies = string.Join(" ", mappedCookies.Keys.Where(key => _desiredCookies.Contains(key))
|
||||
.Select(key => $"${key}={mappedCookies[key]};"));
|
||||
.Select(key => $"{key}={mappedCookies[key]};"));
|
||||
|
||||
await browser.CloseAsync();
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user