Merge pull request #44 from korsvanloon/master
change empty cookie string to have double quotes
This commit is contained in:
commit
61c11966b7
1 changed files with 1 additions and 1 deletions
|
@ -369,7 +369,7 @@ class AngelAuth<User> {
|
||||||
|
|
||||||
if (allowCookie == true) {
|
if (allowCookie == true) {
|
||||||
res.cookies.removeWhere((cookie) => cookie.name == "token");
|
res.cookies.removeWhere((cookie) => cookie.name == "token");
|
||||||
_addProtectedCookie(res, 'token', '');
|
_addProtectedCookie(res, 'token', '""');
|
||||||
}
|
}
|
||||||
|
|
||||||
if (options != null &&
|
if (options != null &&
|
||||||
|
|
Loading…
Reference in a new issue