From b07f89eab6fb4f93ff3c3e9a0eb462ef3177432a Mon Sep 17 00:00:00 2001 From: Taka Date: Mon, 6 May 2019 10:32:44 +0000 Subject: [PATCH] Added a comment. --- vasl_templates/webapp/main.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/vasl_templates/webapp/main.py b/vasl_templates/webapp/main.py index 0e67b11..b5acf64 100644 --- a/vasl_templates/webapp/main.py +++ b/vasl_templates/webapp/main.py @@ -44,6 +44,9 @@ def get_startup_msgs(): if msgs: startup_msgs[ msg_type ] = msgs + # NOTE: Because we don't clear the collected messages here, if the web page is refreshed, or loaded + # via another browser instance, the user will see the same messages again, which, depending on + # the exact nature of those messages, could look odd, but is probably what we want. return jsonify( startup_msgs ) # ---------------------------------------------------------------------