itismyskillmarket 1.3.16 → 1.3.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2183,7 +2183,7 @@ API_ROUTES.GET["/api/skill-info"] = async (_req, res, url) => {
|
|
|
2183
2183
|
const cacheKey = `skill-info:${skillName}`;
|
|
2184
2184
|
let info = getCached(cacheKey);
|
|
2185
2185
|
if (!info) {
|
|
2186
|
-
info = await
|
|
2186
|
+
info = await fetchSkillPackage(skillName);
|
|
2187
2187
|
if (info) setCache(cacheKey, info, 3e4);
|
|
2188
2188
|
}
|
|
2189
2189
|
if (!info) {
|