mirror of
https://github.com/go-shiori/shiori.git
synced 2026-04-25 06:25:54 +03:00
[GH-ISSUE #203] Archives getting created with setting "Create archive by default" turned off #149
Labels
No labels
component:backend
component:builds
component:builds
component:extension
component:frontend
component:readability
database
database:mysql
database:postgres
database:sqlite
feature:ebooks
github_actions
good first issue
hacktoberfest
note:duplicate?
note:fixed?
note:out-of-scope?
os:windows
priority:high
priority:low
pull-request
resolution:as-intended
resolution:cant-reproduce
resolution:duplicate
resolution:fixed
resolution:wontfix
tag:TBD
tag:big-task
tag:help-wanted
tag:huge-data
tag:meta
tag:more-info
tag:next
tag:no-stale
tag:requires-migrations
tag:research
tag:security 🛡️
tag:stale
tag:waiting-for-assignee
type:bug
type:documentation
type:enhancement
type:meta
type:ux
user:cli
user:web
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/shiori#149
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @imtbl on GitHub (Oct 12, 2019).
Original GitHub issue: https://github.com/go-shiori/shiori/issues/203
First of all, thank you for this project, I find it very neat.
The issue I've run into though is that I have
Create archive by defaultticked off in the settings but Shiori still creates archives for certain pages (e.g., Reddit).This takes time when adding the bookmark and also isn't perfect in many cases. E.g., Reddit's new design is heavily reliant on JS, so Shiori doesn't grab the comments (as they are loaded via XHR). This makes it more annoying than useful to me when it happens by default.
Is there no way to completely disable archive creation until manually triggered?
And while on the topic, once an archive has been created, is there a way to delete it again (via the web interface)? I couldn't find that option.
Thank you!
@RadhiFadlillah commented on GitHub (Oct 13, 2019):
Hi @mserajnik,
Yep, I've made a mistake where checkbox is ignored in all dialog. It should be fixed by 7d938f3. Could you try it again ?
No, unfortunately right now there is no option to do that yet.
@imtbl commented on GitHub (Oct 14, 2019):
Thank you, I gave this a try yesterday, this seems to be fixed now. :)
@imtbl commented on GitHub (Oct 23, 2019):
Sorry, need to reopen this. While the issue didn't come up again on the same test links I had tried before, it still seems to occur for certain sites/pages.
E.g., when bookmarking
https://projectimmersion.com/, it still always adds the archive, regardless of the setting.My best bet would be that text length seems to be a factor that decides if a page gets archived automatically even with the setting off or not; at least it seemed like this from the pages I've tried.
@imtbl commented on GitHub (Nov 3, 2019):
After looking into this again, I figured out that this is not a bug, merely a misunderstanding on my side.
I didn't know the difference between the saved content and the archive. Shiori seems to always store a plain text version of a bookmark if it can (the requirement probably being that there is actual text content => it won't work with SPA's where there is only JS served).
The archive then is an expanded version of that where it will save the whole page including assets (styles, images).
Keeping that in mind, the archive flag works as intended and this can be closed. I will open a different issue with a feature request to either (optionally) turn off the stored content or change how the bookmark is linked so it prefers the original URL.