unknown 3 anni fa
parent
commit
2f22a28cde
1 ha cambiato i file con 1 aggiunte e 6 eliminazioni
  1. 1 6
      app/Models/Client.php

+ 1 - 6
app/Models/Client.php

@@ -810,12 +810,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;
     }