diff --git a/startup/webutils.py b/startup/webutils.py index 218741be53..ee16c90668 100644 --- a/startup/webutils.py +++ b/startup/webutils.py @@ -23,4 +23,7 @@ def get_website_settings(context): context.update({ "shopping_cart_enabled": cart_enabled, "post_login": post_login + context.get("post_login", []) - }) \ No newline at end of file + }) + + if not context.get("favicon"): + context["favicon"] = "app/images/favicon.ico" \ No newline at end of file