Ver Fonte

Fix Safari detection for showing timestamps

Danilo Bargen há 6 anos atrás
pai
commit
dfdf175bb9
1 ficheiros alterados com 1 adições e 1 exclusões
  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;
         }