Jake Vanderwerf
2025-11-04 42fa8304ddb811b0f725f245130f70c0f5e86a6c
inc/rest/routes/BioRoutes.php
@@ -225,9 +225,7 @@
        if (!$this->checkUser($user_id)) {
            return [];
        }
        //TODO: Check we're clearing this cache
        $key = sprintf('user_%c_thumbnail_data', $user_id);
        $cache = $this->cache->get($key);
        $cache = $this->cache->get($user_id);
        if ($cache) {
            return $cache;
        }
@@ -261,7 +259,7 @@
            'type'          => jvbArtistType($link),
        ];
        $this->cache->set($key, $data);
        $this->cache->set($user_id, $data);
        return $data;
    }