1
0
mirror of https://github.com/Matthww/PlayerInfo.git synced 2025-05-09 15:29:22 +00:00

modified: src/Matthww/PlayerInfo/Tasks/FetchModelsTask.php

This commit is contained in:
Keenan Yafiq 2023-08-15 20:29:05 +07:00
parent 8e659424cd
commit 94cab0f223

@ -16,10 +16,11 @@ class FetchModelsTask extends AsyncTask {
public function onRun(): void {
$result = Internet::getURL("https://raw.githubusercontent.com/Matthww/PlayerInfo/master/resources/models.yml");
if(!$result instanceof string) {
if(!is_string($result)) {
$this->setResult(false);
return;
}
file_put_contents($this->path. "models.yml", $result);
$this->setResult(true);
}