Forráskód Böngészése

Fix Safari detection for showing timestamps

Danilo Bargen 6 éve
szülő
commit
dfdf175bb9
1 módosított fájl, 1 hozzáadás és 1 törlés
  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;
         }