소스 검색

Merge branch 'dev' of rav.triplestart.com:jmudaka/stagfe2

root 3 년 전
부모
커밋
b761d8a232
1개의 변경된 파일1개의 추가작업 그리고 6개의 파일을 삭제
  1. 1 6
      app/Models/Client.php

+ 1 - 6
app/Models/Client.php

@@ -813,12 +813,7 @@ ORDER BY m.ts DESC
 
     public function getPrimaryCoverage()
     {
-        // try the latest manual coverage
-        $coverage = $this->latestManualClientPrimaryCoverage;
-        if (!$coverage) {
-            // try the latest coverage
-            $coverage = $this->latestClientPrimaryCoverage;
-        }
+        $coverage = $this->latestClientPrimaryCoverage;
         return $coverage;
     }