Explorar el Código

Fix Safari detection for showing timestamps

Danilo Bargen hace 6 años
padre
commit
dfdf175bb9
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/app.ts

+ 1 - 1
src/app.ts

@@ -144,7 +144,7 @@ angular.module('3ema', [
     function($log: ng.ILogService, CONFIG: threema.Config, browserService: BrowserService) {
         // For Safari (when in DEBUG mode), monkey-patch $log to show timestamps.
 
-        if (!(CONFIG.DEBUG && browserService.getBrowser().isSafari)) {
+        if (!(CONFIG.DEBUG && browserService.getBrowser().isSafari(false))) {
             return;
         }