From 01c25837d55ca3cba70a678f0e78b537c28c325b Mon Sep 17 00:00:00 2001 From: user202729 <25191436+user202729@users.noreply.github.com> Date: Sat, 15 Dec 2018 23:38:25 +0700 Subject: [PATCH] Fix tab_mute command --- qutebrowser/components/misccommands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qutebrowser/components/misccommands.py b/qutebrowser/components/misccommands.py index 60715c65b..eaf45f40d 100644 --- a/qutebrowser/components/misccommands.py +++ b/qutebrowser/components/misccommands.py @@ -238,7 +238,7 @@ def tab_mute(tab: apitypes.Tab) -> None: if tab is None: return try: - tab.audio.set_muted(tab.audio.is_muted(), override=True) + tab.audio.set_muted(not tab.audio.is_muted(), override=True) except apitypes.WebTabError as e: raise cmdutils.CommandError(e)