feeds-fun 1.5.0 → 1.6.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "feeds-fun",
3
- "version": "1.5.0",
3
+ "version": "1.6.3",
4
4
  "author": "Aliaksei Yaletski (Tiendil) <a.eletsky@gmail.com> (https://tiendil.org/)",
5
5
  "description": "Frontend for the Feeds Fun — web-based news reader",
6
6
  "keywords": [
@@ -169,13 +169,13 @@
169
169
  });
170
170
 
171
171
  const hasRules = computed(() => {
172
- if (!hasEntries.value) {
172
+ if (entriesStore.loadedEntriesReport === null) {
173
173
  return false;
174
174
  }
175
175
 
176
- // TODO: is is heuristics (score could be 0 even with rules)
176
+ // TODO: it is a heuristic (score could be 0 even with rules)
177
177
  // must be refactored to something more stable
178
- for (const entryId of entriesReport.value) {
178
+ for (const entryId of entriesStore.loadedEntriesReport) {
179
179
  if (entriesStore.entries[entryId].score != 0) {
180
180
  return true;
181
181
  }