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
5df2cbe5d7
commit
f093ed29bf
@ -22,7 +22,7 @@ let
|
||||
mkValueString =
|
||||
value:
|
||||
if isList value then
|
||||
(concatStringsSep ", " (map mkValueString value))
|
||||
(concatStringsSep "," (map mkValueString value))
|
||||
else if isAttrs value then
|
||||
"\n" + (mkAttrsString value)
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user