]> git.mxchange.org Git - friendica.git/commitdiff
Forgotten "+"
authorMichael <heluecht@pirati.ca>
Thu, 8 Feb 2018 19:47:47 +0000 (19:47 +0000)
committerMichael <heluecht@pirati.ca>
Thu, 8 Feb 2018 19:47:47 +0000 (19:47 +0000)
src/Model/Queue.php

index 4a29c8aa4a683bdf4fccf28305769e66901304f4..8b9e801c3ffc616af346e94322b4be112bbcc74c 100644 (file)
@@ -32,7 +32,7 @@ class Queue
 
                // Calculate the delay until the next trial
                $delay = (($retrial + 3) ** 4) + (rand(1, 30) * ($retrial + 1));
-               $next = DateTimeFormat::utc('now ' . $delay . ' seconds');
+               $next = DateTimeFormat::utc('now ' . $delay . ' seconds');
 
                dba::update('queue', ['last' => DateTimeFormat::utcNow(), 'retrial' => $retrial + 1, 'next' => $next], ['id' => $id]);
        }