diff options
author | anekos | 2015-09-29 22:28:40 +0900 |
---|---|---|
committer | anekos | 2015-09-29 22:28:40 +0900 |
commit | de561f4b9cc35ff2cdcf63fdac2d243c0becd7eb (patch) | |
tree | c61fef7c8e180e049a0edc7bc5665b227c9b9d18 /twittperator/twsidebar.tw | |
parent | 1fadfa1fe321a69a41319cfe43ae0cbbf040bb8d (diff) | |
parent | ed15e58b7b7a44a7df7a5bc7a676ae6cc87ba073 (diff) | |
download | vimperator-plugins-de561f4b9cc35ff2cdcf63fdac2d243c0becd7eb.tar.bz2 |
Merge branch 'unlet-unlet-unlet'
Diffstat (limited to 'twittperator/twsidebar.tw')
-rw-r--r-- | twittperator/twsidebar.tw | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/twittperator/twsidebar.tw b/twittperator/twsidebar.tw index 77450f7..8f4248e 100644 --- a/twittperator/twsidebar.tw +++ b/twittperator/twsidebar.tw @@ -425,7 +425,10 @@ liberator.modules.TWAnekoSB = ANekoSB = (function () { t.type = 'filter'; appendTweet(t, 'home', streamName); appendTweet(t, 'filter', streamName); - let (s = Config.sound.filter) (s && s.play()); + (function () { + let s = Config.sound.filter; + return s && s.play(); + })(); } } else if (/^(keyword)$/.test(t.type)) { appendTweet(t, 'home', streamName); |