From 3d83959aab3925c42cb8dc0f91243496351ba21d Mon Sep 17 00:00:00 2001 From: Ethan O'Brien Date: Sun, 7 Jun 2026 22:14:46 -0500 Subject: [PATCH] Fix ios path --- src/static_handlers.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/static_handlers.rs b/src/static_handlers.rs index d0f5841..fea1da3 100644 --- a/src/static_handlers.rs +++ b/src/static_handlers.rs @@ -71,7 +71,7 @@ fn platform_guard(ctx: &guard::GuardContext) -> bool { .split('/') .nth(1) .unwrap_or(""); - matches!(platform, "Android" | "StandaloneWindows64" | "Ios") + matches!(platform, "Android" | "StandaloneWindows64" | "iOS") } pub fn routes(cfg: &mut web::ServiceConfig) {