You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When an owner choose to delete a note, then this note will now return a 404 error. But it still appears in each personal history of any account who visited it, while it's a dead link : deception, bad UX. :(
This issue doesn't argue about the "should really delete" problem in #766. Whether or not it's really deleted or just marked as deleted, for the UX, there shouldn't have dead links.
The text was updated successfully, but these errors were encountered:
There's currently two places where your history might be stored: It could be in a user's browser in some localstorage object - there we would have no possibility to remove it. But this would only happen for people who don't have an account on the site.
For everyone who has an account, there's a history object stored in the user table. This is not an ideal place to store it, as it is hard to search and modify. Basically, we'd have to go over every single user's history, parse a JSON, delete the entry and than stringify and store it back. I think the better approach would be to make this an actual table in the database, linking user to note via foreign keys.
I'm marking this as bug, because I totally agree that a deleted document shouldn't remain in a history. Sadly, I don't think it will get resolved very soon.
Makes sense. The origin of this problem is bundled to the fact that originally you weren't able to delete a note at all. Which made such a situation close to impossible.
Ok, thanks, at least we are agree on the UX problem and it is kept here for memory. :)
Anyway, as long as we will have real lists of available notes (multiple issues for that, one for all accesible notes #975, and multiple for a particular user notes like #653), we will not use the history to access our notes (or rarely).
When an owner choose to delete a note, then this note will now return a 404 error. But it still appears in each personal history of any account who visited it, while it's a dead link : deception, bad UX. :(
This issue doesn't argue about the "should really delete" problem in #766. Whether or not it's really deleted or just marked as deleted, for the UX, there shouldn't have dead links.
The text was updated successfully, but these errors were encountered: