mirror of
https://github.com/Matthww/PlayerInfo.git
synced 2025-09-07 16:42:44 +00:00
modified: src/Matthww/PlayerInfo/Tasks/FetchModelsTask.php
This commit is contained in:
@ -15,12 +15,12 @@ class FetchModelsTask extends AsyncTask {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public function onRun(): void {
|
public function onRun(): void {
|
||||||
$result = Internet::getURL("https://raw.githubusercontent.com/Matthww/PlayerInfo/master/resources/models.yml");
|
$result = Internet::getURL("https://raw.githubusercontent.com/Matthww/PlayerInfo/master/resources/models.yml")->getBody();
|
||||||
if(!is_string($result)) {
|
if(!is_string($result)) {
|
||||||
$this->setResult(false);
|
$this->setResult(false);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
file_put_contents($this->path. "models.yml", $result);
|
file_put_contents($this->path. "models.yml", $result);
|
||||||
$this->setResult(true);
|
$this->setResult(true);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user