aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLibravatar Bennett <hello@vantezzen.io>2020-03-08 10:39:13 +0100
committerLibravatar GitHub <noreply@github.com>2020-03-08 10:39:13 +0100
commit3be5a6d8659babc029650370e8314c7949cc797e (patch)
treebe1cd46aa17e121e73cf7aa887cbe9af491e8af3 /src
parentNew Crowdin translations (#427) (diff)
parentPartial revert of #371 (diff)
downloadferdium-app-3be5a6d8659babc029650370e8314c7949cc797e.tar.gz
ferdium-app-3be5a6d8659babc029650370e8314c7949cc797e.tar.zst
ferdium-app-3be5a6d8659babc029650370e8314c7949cc797e.zip
Merge pull request #428 from dpeukert/patch-1
Fix regression around muting services
Diffstat (limited to 'src')
-rw-r--r--src/stores/ServicesStore.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stores/ServicesStore.js b/src/stores/ServicesStore.js
index ae6ba11c5..985887d2d 100644
--- a/src/stores/ServicesStore.js
+++ b/src/stores/ServicesStore.js
@@ -766,7 +766,7 @@ export default class ServicesStore extends Store {
766 const isMuted = isAppMuted || service.isMuted; 766 const isMuted = isAppMuted || service.isMuted;
767 767
768 if (isAttached) { 768 if (isAttached) {
769 service.webview.audioMuted = isMuted; 769 service.webview.setAudioMuted(isMuted);
770 } 770 }
771 }); 771 });
772 } 772 }