irssi: fix syntax error when no channels are specified

(cherry picked from commit 5d4327cff4)
This commit is contained in:
ReplayCoding 2022-03-12 13:51:48 -08:00 committed by Robert Helgesson
parent 47ae373e74
commit a8d00f5c03
No known key found for this signature in database
GPG key ID: 36BDAA14C2797E89

View file

@ -44,14 +44,15 @@ let
}
''));
channelString = concatStringsSep cnl (flip mapAttrsToList cfg.networks (k: v:
concatStringsSep cnl (flip mapAttrsToList v.channels (c: cv: ''
{
chatnet = "${k}";
name = "${c}";
autojoin = "${boolStr cv.autoJoin}";
}
''))));
channelString = concatStringsSep cnl (concatLists
(flip mapAttrsToList cfg.networks (k: v:
(flip mapAttrsToList v.channels (c: cv: ''
{
chatnet = "${k}";
name = "${c}";
autojoin = "${boolStr cv.autoJoin}";
}
'')))));
channelType = types.submodule {
options = {