show sightings from own client

This commit is contained in:
2025-08-03 10:07:55 +02:00
parent 4d0a69cb12
commit e3fb452b28
5 changed files with 58 additions and 21 deletions

View File

@@ -72,13 +72,7 @@ impl Backend {
async fn client_full(&self, cookies: CookieJar, headers: &HeaderMap) -> (CookieJar, Req) {
let (cookies, client) = self.client(cookies).await;
let lang = language::language(&cookies, headers);
(
cookies,
Req {
client,
lang: lang.into(),
},
)
(cookies, Req { client, lang })
}
}