Completed
Push — master ( 2996b3...2d8d08 )
by Francis
17s queued 10s
created
src/LiveStream/LiveStream.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -474,7 +474,7 @@
 block discarded – undo
474 474
     private function refreshToken(): void
475 475
     {
476 476
         $now = round(microtime(true) * 1000);
477
-        if (!$this->tokenTimestamp || round(($now - $this->tokenTimestamp)/1000) > 300) {
477
+        if (!$this->tokenTimestamp || round(($now - $this->tokenTimestamp) / 1000) > 300) {
478 478
             $token = $this->generateToken();
479 479
             $this->tokenTimestamp = $token['timestamp'];
480 480
             $this->token = $token['token'];
Please login to merge, or discard this patch.