widescreen by default
All checks were successful
Create and publish a Docker image / build-and-push-image (push) Successful in 9m16s

This commit is contained in:
Nicholas Orlowsky 2025-10-09 22:52:24 -04:00
parent 5990b3a6e3
commit cd8de0a06d
No known key found for this signature in database
GPG key ID: A9F3BA4C0AA7A70B
2 changed files with 2 additions and 2 deletions

View file

@ -29,7 +29,7 @@ where T: Template,
Fut: Future<Output = anyhow::Result<ContentTemplate<T>>> + 'static {
let start_time = Instant::now();
let mut enable_widescreen = false;
let mut enable_widescreen = true;
if let Some(widescreen_set) = req.cookie("widescreen") {
enable_widescreen = widescreen_set.value() == "true";
}