]> git.mxchange.org Git - friendica.git/blobdiff - src/Model/Queue.php
Merge pull request #4931 from annando/no-ignored
[friendica.git] / 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]);
        }