mirror of
https://github.com/9001/copyparty.git
synced 2025-08-17 09:02:15 -06:00
nix: remove space from list separator
The extra speces made copyparty freak out if you tried listening to an ip address and a unix socket at the same time
This commit is contained in:
parent
b69d590176
commit
f401fa7f6c
|
@ -22,7 +22,7 @@ let
|
||||||
mkValueString =
|
mkValueString =
|
||||||
value:
|
value:
|
||||||
if isList value then
|
if isList value then
|
||||||
(concatStringsSep ", " (map mkValueString value))
|
(concatStringsSep "," (map mkValueString value))
|
||||||
else if isAttrs value then
|
else if isAttrs value then
|
||||||
"\n" + (mkAttrsString value)
|
"\n" + (mkAttrsString value)
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in a new issue