From 00170f3c2ea65713a9e688704dd0cd4995bb2839 Mon Sep 17 00:00:00 2001 From: Timendum Date: Mon, 27 Jun 2016 14:27:58 +0200 Subject: [PATCH] Changed way of identification of 100% --- class/FileHandler.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/class/FileHandler.php b/class/FileHandler.php index 7ed3e1d..4274e04 100644 --- a/class/FileHandler.php +++ b/class/FileHandler.php @@ -55,7 +55,7 @@ class FileHandler try { $lines = explode("\r", file_get_contents($file)); - $content["100"] = strpos($lines[count($lines)-1], ' in ') > 0; + $content["100"] = strpos($lines[count($lines)-1], ' 100% of ') > 0; } catch (Exception $e) { $content["100"] = False; }