diff --git a/app/Mail/CompletedSpeedtestMail.php b/app/Mail/CompletedSpeedtestMail.php index cfd7cecf6..4d6732154 100644 --- a/app/Mail/CompletedSpeedtestMail.php +++ b/app/Mail/CompletedSpeedtestMail.php @@ -51,7 +51,7 @@ public function content(): Content 'ping' => round($this->result->ping, 2).' ms', 'download' => Number::toBitRate(bits: $this->result->download_bits, precision: 2), 'upload' => Number::toBitRate(bits: $this->result->upload_bits, precision: 2), - 'packetLoss' => $result->packet_loss ? round($result->packet_loss, precision: 2) : '', + 'packetLoss' => $this->result->packet_loss ? round($this->result->packet_loss, precision: 2) : '', 'speedtest_url' => $this->result->result_url, 'url' => url('/admin/results'), ], diff --git a/config/speedtest.php b/config/speedtest.php index 33493f396..8eab6063f 100644 --- a/config/speedtest.php +++ b/config/speedtest.php @@ -8,7 +8,7 @@ */ 'build_date' => Carbon::parse('2026-02-04'), - 'build_version' => 'v1.13.7', + 'build_version' => 'v1.13.8', 'content_width' => env('CONTENT_WIDTH', '7xl'),