]> git.mxchange.org Git - friendica.git/blobdiff - src/Util/Profiler.php
Add support for multiple Link as urls of Images in ActivityPub\Receiver
[friendica.git] / src / Util / Profiler.php
index 1a5cd99922c6c47da90db8777a5d000c4f6ba76e..240273bde3ce319594cbe4c6a4adc7de6dcada33 100644 (file)
@@ -177,7 +177,7 @@ class Profiler implements ContainerInterface
                        $output .= "\nDatabase Read:\n";
                        foreach ($this->callstack["database"] as $func => $time) {
                                $time = round($time, 3);
-                               if ($time > 0.001) {
+                               if ($time > 0) {
                                        $output .= $func . ": " . $time . "\n";
                                }
                        }