From 69a8d654073386843111aaed50aac9e5a4a7f03c Mon Sep 17 00:00:00 2001
From: David Baker <dave@matrix.org>
Date: Fri, 4 Mar 2016 18:16:02 +0000
Subject: [PATCH] Don't pause the audio when we hide the notif: shouldn't be
 necessary and could cause sound to stop mid-way if a prior notif times out
 while the sound from a later one is playing.

---
 src/Notifier.js | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/src/Notifier.js b/src/Notifier.js
index 3dbbf5cb82..1c35bd7509 100644
--- a/src/Notifier.js
+++ b/src/Notifier.js
@@ -100,9 +100,6 @@ var Notifier = {
 
         global.setTimeout(function() {
             notification.close();
-            if (audioClip) {
-                audioClip.pause();
-            }
         }, 5 * 1000);
         
     },