about summary refs log tree commit diff
path: root/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib.rs b/src/lib.rs
index eb915c2..2b4d1cc 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -75,10 +75,10 @@ where
     app.with(
         tide::sessions::SessionMiddleware::new(
             tide::sessions::CookieStore::new(),
-            &app.state().cookie_secret.as_bytes()
+            app.state().cookie_secret.as_bytes(),
         )
-            .with_cookie_name("kittybox_session")
-            .without_save_unchanged()
+        .with_cookie_name("kittybox_session")
+        .without_save_unchanged(),
     );
     app
 }