File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -246,7 +246,7 @@ function playFromQueueExchange1(){
246246 var event = eventQueue . shift ( ) ;
247247 if ( event != null && event . message != null && ! shouldEventBeIgnored ( event ) && svg != null ) {
248248 playSound ( event . message . length * 1.1 , event . type ) ;
249- if ( ! document . hidden || orgRepoFilterNames != [ ] )
249+ if ( ! document . hidden )
250250 drawEvent ( event , svg ) ;
251251 }
252252 setTimeout ( playFromQueueExchange1 , Math . floor ( Math . random ( ) * 1000 ) + 500 ) ;
@@ -257,7 +257,7 @@ function playFromQueueExchange2(){
257257 var event = eventQueue . shift ( ) ;
258258 if ( event != null && event . message != null && ! shouldEventBeIgnored ( event ) && svg != null ) {
259259 playSound ( event . message . length , event . type ) ;
260- if ( ! document . hidden || orgRepoFilterNames != [ ] )
260+ if ( ! document . hidden )
261261 drawEvent ( event , svg ) ;
262262 }
263263 setTimeout ( playFromQueueExchange2 , Math . floor ( Math . random ( ) * 800 ) + 500 ) ;
You can’t perform that action at this time.
0 commit comments