We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84c4500 commit 6f8ea43Copy full SHA for 6f8ea43
src/lib.rs
@@ -152,7 +152,7 @@ pub mod mem {
152
153
/// Get a session from the storage backend.
154
async fn load_session(&self, jar: &cookie::CookieJar) -> Result<Session, Self::Error> {
155
- let id = match dbg!(jar).get("session") {
+ let id = match jar.get("session") {
156
Some(cookie) => Uuid::parse_str(cookie.value()),
157
None => return Err(Error::new(ErrorKind::Other, "No session cookie found")),
158
};
0 commit comments