mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-16 22:49:25 +03:00
Merge pull request #26081 from nocoolnametom/update-znc
znc module: Fix error with bitlbee channel closing tag missing a newline
This commit is contained in:
commit
6ab7038d27
1 changed files with 2 additions and 1 deletions
|
@ -53,7 +53,8 @@ let
|
||||||
Server = ${net.server} ${lib.optionalString net.useSSL "+"}${toString net.port} ${net.password}
|
Server = ${net.server} ${lib.optionalString net.useSSL "+"}${toString net.port} ${net.password}
|
||||||
${concatMapStrings (c: "<Chan #${c}>\n</Chan>\n") net.channels}
|
${concatMapStrings (c: "<Chan #${c}>\n</Chan>\n") net.channels}
|
||||||
${lib.optionalString net.hasBitlbeeControlChannel ''
|
${lib.optionalString net.hasBitlbeeControlChannel ''
|
||||||
<Chan &bitlbee></Chan>
|
<Chan &bitlbee>
|
||||||
|
</Chan>
|
||||||
''}
|
''}
|
||||||
${net.extraConf}
|
${net.extraConf}
|
||||||
</Network>
|
</Network>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue