aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/srtgui/widgets.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/srtgui/widgets.py b/lib/srtgui/widgets.py
index 751f7f14..5f5c54b1 100644
--- a/lib/srtgui/widgets.py
+++ b/lib/srtgui/widgets.py
@@ -327,7 +327,8 @@ class ToasterTable(TemplateView):
cache_name = re.sub(r'["\']', "-", cache_name)
cache_name = re.sub(r'[^A-Za-z0-9-]', "", cache_name)
- if nocache:
+ # Forcibly disable caching for all pages, since SRTool data is too dynamic
+ if True or nocache:
cache.delete(cache_name)
data = cache.get(cache_name)