1
Fork 0
mirror of https://github.com/RGBCube/Site synced 2025-08-01 13:37:49 +00:00

Fix number can't be coerced to string

This commit is contained in:
RGBCube 2024-01-09 00:09:18 +03:00
parent 7e67fdc427
commit d530911c39
No known key found for this signature in database

View file

@ -170,8 +170,8 @@
serviceConfig = let
arguments = [
"--http-port" cfg.httpPort
"--https-port" cfg.httpsPort
"--http-port" (toString cfg.httpPort)
"--https-port" (toString cfg.httpsPort)
"--log-level" cfg.logLevel
] ++ (optionals (cfg.certificate != null) [
"--certificate" cfg.certificate