-
-
Save durka/3c47af838a5d5cbfee3fd9e0bd7faf78 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| let rate_error = cookies.get("rate_error").map(|c| c.value().to_owned()); | |
| if rate_error.is_some() { | |
| cookies.remove(Cookie::named("rate_error")); | |
| } | |
| let report_error = cookies.get("report_error").map(|c| c.value().to_owned()); | |
| if report_error.is_some() { | |
| cookies.remove(Cookie::named("report_error")); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment