Adding character set parameter to the Multimon-NG module.

This commit is contained in:
Marat Fayzullin 2024-04-16 20:47:25 -04:00
parent d1a46c291a
commit b1657a0666
1 changed files with 2 additions and 1 deletions

View File

@ -22,7 +22,8 @@ class MultimonModule(PopenModule):
super().__init__()
def getCommand(self):
cmd = ["multimon-ng", "-", "-v0", "-c"]
pm = Config.get()
cmd = ["multimon-ng", "-", "-v0", "-c", "-C", pm["paging_charset"]]
for x in self.decoders:
cmd += ["-a", x]
return cmd