summary refs log tree commit diff
path: root/extra/admin-api/Spacebar.Cdn/Extensions
diff options
context:
space:
mode:
authorRory& <root@rory.gay>2026-03-11 00:58:13 +0100
committerRory& <root@rory.gay>2026-03-11 00:58:13 +0100
commitb40b5234f4cb3681bd9531d76c38111057f71733 (patch)
treeae238a01834f25871631b84d19141019c56c8f1b /extra/admin-api/Spacebar.Cdn/Extensions
parentfix: fall back to undefined in message create (diff)
downloadserver-ts-github/dev/emma/gateway-batch-presence-lookup.tar.xz
Diffstat (limited to 'extra/admin-api/Spacebar.Cdn/Extensions')
-rw-r--r--extra/admin-api/Spacebar.Cdn/Extensions/ImageController.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/extra/admin-api/Spacebar.Cdn/Extensions/ImageController.cs b/extra/admin-api/Spacebar.Cdn/Extensions/ImageController.cs

index 21531e90..133eb8e1 100644 --- a/extra/admin-api/Spacebar.Cdn/Extensions/ImageController.cs +++ b/extra/admin-api/Spacebar.Cdn/Extensions/ImageController.cs
@@ -14,7 +14,7 @@ public class ImageController : ControllerBase { Passthrough = Request.Query.ContainsKey("passthrough") && bool.TryParse(Request.Query["passthrough"], out bool pt) && pt, Animated = Request.Query.ContainsKey("animated") && bool.TryParse(Request.Query["animated"], out bool an) && an, SpacebarAllowUpscale = Request.Query.ContainsKey("allowUpscale") && bool.TryParse(Request.Query["allowUpscale"], out bool au) && au, - SpacebarOptimiseGif = Request.Query.ContainsKey("optimiseGif") && bool.TryParse(Request.Query["optimiseGif"], out bool og) && og + SpacebarOptimiseGif = Request.Query.ContainsKey("optimiseGif") && bool.TryParse(Request.Query["optimiseGif"], out bool og) && og, }; }