Skip to content

Commit 6f8ea43

Browse files
committed
Update lib.rs
1 parent 84c4500 commit 6f8ea43

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ pub mod mem {
152152

153153
/// Get a session from the storage backend.
154154
async fn load_session(&self, jar: &cookie::CookieJar) -> Result<Session, Self::Error> {
155-
let id = match dbg!(jar).get("session") {
155+
let id = match jar.get("session") {
156156
Some(cookie) => Uuid::parse_str(cookie.value()),
157157
None => return Err(Error::new(ErrorKind::Other, "No session cookie found")),
158158
};

0 commit comments

Comments
 (0)