nicholaschiang / hammock

Move your newsletters outside of your inbox. Focus on and learn from the content you love in a distraction-free reading space.
https://readhammock.com
GNU Affero General Public License v3.0
11 stars 1 forks source link

Archived newsletters cannot be read #31

Closed martinsrna closed 3 years ago

martinsrna commented 3 years ago

After opening a newsletter in the Archive, it goes back to Archive after 1-2 seconds:

CleanShot 2021-05-12 at 11 45 10

nicholaschiang commented 3 years ago

This is because of this line of code that redirects back if the message is archved:

      if (updated.archived) Router.back();

Instead, I should only go back if the message was automatically archived because the user scrolled all the way down (and not if it was already archived). But, because that auto-archive feature is already disabled (for now), I can just get rid of all of that.