1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 10:11:08 +01:00

fix(matterbridge): change nick delimiter

this prevents mumble from interpreting the nick as an html tag
This commit is contained in:
2021-02-14 11:21:14 +01:00
parent 4e107f3df7
commit 85a6001b53

View File

@@ -3,7 +3,7 @@ let
bridgeBotToken = lib.strings.fileContents <system-secrets/telegram/kmein.token>;
config = {
general = {
RemoteNickFormat = "<{NICK}> ";
RemoteNickFormat = "[{NICK}] ";
Charset = "utf-8";
};
telegram.kmein.Token = bridgeBotToken;