1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

cookie: fix a new match error about redundant else

This commit is contained in:
Delyan Angelov 2020-04-25 23:02:04 +03:00
parent 19d7553d67
commit cd27300d75

View File

@ -266,9 +266,6 @@ pub fn (c &Cookie) str() string {
.same_site_strict_mode {
b.write('; SameSite=Strict')
}
else {
// Do nothing
}
}
return b.str()
}