We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26857e8 commit 233433cCopy full SHA for 233433c
aider/commands.py
@@ -443,10 +443,11 @@ def cmd_voice(self, args):
443
return
444
445
text = v.record_and_transcribe()
446
- self.io.add_to_file_history(text)
447
- print()
448
- self.io.user_input(text, log_only=False)
449
+ if text:
+ self.io.add_to_file_history(text)
+ print()
+ self.io.user_input(text, log_only=False)
450
451
452
return text
453
0 commit comments