mirror of
https://github.com/alexjustesen/speedtest-tracker.git
synced 2026-06-23 04:20:08 +00:00
bug: fix completed mail (#2692)
This commit is contained in:
@@ -51,7 +51,7 @@ class CompletedSpeedtestMail extends Mailable implements ShouldQueue
|
||||
'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'),
|
||||
],
|
||||
|
||||
Reference in New Issue
Block a user