summaryrefslogtreecommitdiffstats
path: root/core/context.py
diff options
context:
space:
mode:
Diffstat (limited to 'core/context.py')
-rw-r--r--core/context.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/context.py b/core/context.py
index 1db3436..876c643 100644
--- a/core/context.py
+++ b/core/context.py
@@ -5,7 +5,7 @@ def config_context(request):
return {
"config": Config.system,
"config_identity": (
- Config.load_identity(request.identity) if request.identity else None
+ request.identity.config_identity if request.identity else None
),
"top_section": request.path.strip("/").split("/")[0],
}