From d0fc0f2c7f54b8d382f5630304756cf589d2a059 Mon Sep 17 00:00:00 2001 From: Ian McEwen Date: Tue, 4 Aug 2026 09:45:51 -0700 Subject: [PATCH] Pass time_limit_seconds through in quick launch app info --- clients/clients.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/clients/clients.go b/clients/clients.go index dcd8d24..2a04c65 100644 --- a/clients/clients.go +++ b/clients/clients.go @@ -266,6 +266,10 @@ func QuickLaunchAppInfo(submission, app map[string]any, sysID string) map[string debug, _ := submission["debug"].(bool) app["debug"] = debug + if tls, ok := submission["time_limit_seconds"]; ok && tls != nil { + app["time_limit_seconds"] = tls + } + rawGroups, ok := app["groups"].([]any) if !ok || config == nil { return app