-
Notifications
You must be signed in to change notification settings - Fork 345
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cannot view all items #1089
Comments
As a workaround, you can always disable offline by logging out. When you say that you cannot access your old read items, is it that the "more" button does not show? |
Aah then it's working as intended. It's only syncing items from the last 10 days + unread and starred. Is there a reason why you don't just sync all items? I can access them in normal mode just fine, thanks. |
Syncing all items is too much for offline storage (especially on mobile devices), given that users may have a large number of items. |
Alright. |
Opening devtools and disabling cache should not modify the behaviour. When you say that you cannot access your old read items, is it that the "more" button does not show? |
That is correct. I have |
I'll look into this. Maybe |
OK this was a problem with --- a/public/js/selfoss-db.js
+++ b/public/js/selfoss-db.js
@@ -594,7 +594,7 @@ selfoss.dbOffline = {
}
- if (seek && !ascOrder && !alwaysInDb
+ if (!ascOrder && !alwaysInDb
&& entry.datetime < selfoss.dbOffline.newestGCedEntry) {
// the offline db is missing older entries, the next
// seek will have to find them online. Does that work for you? |
Ah yes, that fixed it. Thanks! |
fixed in dec4c4f |
#1014 added the functionality to work offline and it's great.
However I can no longer access my old read items. I can see the amount of items next to the newest menu item (16/1641) and see those 16 items loaded after the upgrade, more are downloaded when I refresh my sources. But I cannot see all (non-offline) items. They do show when searching.
This problem might be limited to my fork, but the intended functionality isn't clear to me which makes this very hard to debug. Should the application be downloading them in the background or load them when I view /newest/all or am I missing something else?
The text was updated successfully, but these errors were encountered: