Skip to content

Commit

Permalink
fix: keywordless triggers condition broken
Browse files Browse the repository at this point in the history
  • Loading branch information
friday committed Apr 15, 2024
1 parent 7a667ff commit e8b2474
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ulauncher/modes/extensions/ExtensionMode.py
Expand Up @@ -39,7 +39,7 @@ def get_triggers(self) -> Generator[Result, None, None]:
data_controller = controller.data_controller
for trigger_id, trigger in data_controller.user_triggers.items():
action: Any = None
if trigger.keyword is None:
if not trigger.keyword:
action = {
"type": "event:launch_trigger",
"args": [trigger_id],
Expand Down

0 comments on commit e8b2474

Please sign in to comment.