diff --git a/common/components/SkinsSystemApi.php b/common/components/SkinsSystemApi.php index e624109..9caa02a 100644 --- a/common/components/SkinsSystemApi.php +++ b/common/components/SkinsSystemApi.php @@ -22,7 +22,7 @@ class SkinsSystemApi { */ public function textures(string $username): ?array { $response = $this->getClient()->request('GET', $this->buildUrl('/textures/' . $username)); - if ($response->getStatusCode() !== 204) { + if ($response->getStatusCode() !== 200) { return null; }