Skip to content

Commit

Permalink
Fix wrong argument passing for synapse
Browse files Browse the repository at this point in the history
Signed-off-by: magic_rb <[email protected]>
  • Loading branch information
MagicRB committed Oct 7, 2023
1 parent ef470d5 commit c12525e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/services/synapse.nix
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ let
if isList v then
concatMapStringsSep " " (x: "--${n} \"${x}\"") v
else
"\"--${n} ${v}\""))}
"--${n} \"${v}\""))}
'';
};
in
Expand Down

0 comments on commit c12525e

Please sign in to comment.