diff options
author | cel 🌸 <cel@blos.sm> | 2024-02-12 02:26:05 +0000 |
---|---|---|
committer | cel 🌸 <cel@blos.sm> | 2024-02-12 02:26:05 +0000 |
commit | 4ec2a216fc76459b51f1a47e45b6d44cb0ae2f9b (patch) | |
tree | d7635470ecfeae0364f480775cf77be00b0d7c0c /src/i18n.rs | |
parent | 469f9776c03dbe1035c0662125768b1e11b84b75 (diff) | |
download | blossom-4ec2a216fc76459b51f1a47e45b6d44cb0ae2f9b.tar.gz blossom-4ec2a216fc76459b51f1a47e45b6d44cb0ae2f9b.tar.bz2 blossom-4ec2a216fc76459b51f1a47e45b6d44cb0ae2f9b.zip |
styling fixes: added padding clamp
Diffstat (limited to 'src/i18n.rs')
-rw-r--r-- | src/i18n.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/i18n.rs b/src/i18n.rs index 964aaa3..751a0ea 100644 --- a/src/i18n.rs +++ b/src/i18n.rs @@ -21,7 +21,6 @@ pub async fn set_language<E: Endpoint>(next: E, mut req: Request) -> poem::Resul .get::<Session>() .expect("To use the `set_language` middleware, the `Session` data is required."); session.set("lang", params.lang); - println!("{:?}", session.get::<String>("lang")) } next.call(req).await } |