diff options
-rw-r--r-- | __main__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/__main__.py b/__main__.py index 6692d7e..ab4f59c 100644 --- a/__main__.py +++ b/__main__.py @@ -49,7 +49,7 @@ def main(): "process": TextSlotList.from_strings(processes) } - input_handler = PipeWireRecord() if config.input_handler == Config.INPUT_PW else StdinInput() + input_handler = PipeWireRecord() if config.input_mode == Config.INPUT_PW else StdinInput() try: # TODO select input type from config |