ns-rss-spider 1.2.5 → 1.2.6

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.
@@ -37,7 +37,7 @@ var import_axios = __toESM(require("axios"));
37
37
  var import_zx = require("zx");
38
38
  function filterImages(images) {
39
39
  let filtered = images.filter(
40
- (img) => img.width && img.width > 600 && img.type !== "image/gif"
40
+ (img) => img.width && img.width >= 400 && img.type !== "image/gif"
41
41
  );
42
42
  if (filtered.length > 5) {
43
43
  const seen = /* @__PURE__ */ new Set();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ns-rss-spider",
3
- "version": "1.2.5",
3
+ "version": "1.2.6",
4
4
  "description": "",
5
5
  "main": "dist/cjs/index.js",
6
6
  "types": "dist/cjs/index.d.ts",