[solved] Disable in-browser caching of articles?

While developing a plugin hooking into render_article, it’s tedious to constantly reload the whole tt-rss window.

Is there a way to tell tt-tss to not cache the article details in the browser and reload them when switching between articles?

if you’re editing javascript on the fly anyway you can find the cache you’re talking about and nuke it i guess?

i don’t actually know what “caching in the browser” means so idk

“caching in the browser” means:

  1. I open tt-rss in the browser, it loads and shows the feed list
  2. I click on a feed, the article list is shown
  3. I click on an article, it shows the content
  4. I click another article, it shows the content
  5. I click the previous article. Its content is already loaded/cached and does not get re-fetched from the server.

I would like to get it fetched again.

what like in a 3 panel mode? its stored in an array i think just clear it from the browser console

yes, in wide mode (3 panels)

basically just sessionStorage.clear();