Skip to content

Commit 76a0ec4

Browse files
authored
Hotfix v0.17.2 (alexjustesen#1236)
1 parent a7750ee commit 76a0ec4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

app/Listeners/SpeedtestCompletedListener.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ public function handle(ResultCreated $event): void
8989
"\nUpload: ".($event->result->uploadBits / 1000000).' (Mbps)',
9090
];
9191
// Send the request using Laravel's HTTP client
92-
$response = Http::post($webhook['discord_webhook_url'], $payload);
92+
$response = Http::post($webhook['url'], $payload);
9393
}
9494
}
9595
}

app/Listeners/Threshold/AbsoluteListener.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ protected function discordChannel(ResultCreated $event): void
266266
];
267267

268268
// Send the request using Laravel's HTTP client
269-
$response = Http::post($webhook['discord_webhook_url'], $payload);
269+
$response = Http::post($webhook['url'], $payload);
270270
}
271271
}
272272
}

config/speedtest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*/
99
'build_date' => Carbon::parse('2024-02-22'),
1010

11-
'build_version' => 'v0.17.1',
11+
'build_version' => 'v0.17.2',
1212

1313
/**
1414
* General

0 commit comments

Comments
 (0)