소스 검색

fix(sentry): backward compatibility

CoreyAndres 5 년 전
부모
커밋
8f5afde275
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/Services/Config.php

+ 1 - 1
src/Services/Config.php

@@ -83,7 +83,7 @@ class Config
 
             'old_index_DESC'          => $_ENV['old_index_DESC'],
 
-            'sentry_dsn'              => $_ENV['sentry_dsn'],
+            'sentry_dsn'              => !empty($_ENV['sentry_dsn']) ? $_ENV['sentry_dsn'] : null,
         ];
     }