node-csfd-api 2.14.2 → 2.14.4
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/helpers/movie.helper.js +1 -1
- package/package.json +1 -1
package/helpers/movie.helper.js
CHANGED
|
@@ -247,7 +247,7 @@ const getPremieres = (el) => {
|
|
|
247
247
|
};
|
|
248
248
|
exports.getPremieres = getPremieres;
|
|
249
249
|
const getTags = (el) => {
|
|
250
|
-
const tagsRaw = el.querySelectorAll('.box-content a[href*="/
|
|
250
|
+
const tagsRaw = el.querySelectorAll('.box-content a[href*="/tag/"]');
|
|
251
251
|
return tagsRaw.map((tag) => tag.textContent);
|
|
252
252
|
};
|
|
253
253
|
exports.getTags = getTags;
|