From 18b8a7478aef2499a1058e933059c211cba525d6 Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Tue, 13 Apr 2021 13:37:15 -0600 Subject: [PATCH] Change user_context to domain_name as the cache uses domain name not the context. Context and domain are usually the same but there could be times that they are different. However code is always using the domain name for the cache key. --- app/extensions/app_config.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/extensions/app_config.php b/app/extensions/app_config.php index 1f7bee03d4..f509298690 100644 --- a/app/extensions/app_config.php +++ b/app/extensions/app_config.php @@ -311,7 +311,7 @@ $apps[$x]['default_settings'][$y]['default_setting_description'] = "Default value to set whether to record inbound, outbound, or all calls."; //cache details - $apps[$x]['cache']['key'] = "directory.\${extension}@\${user_context}"; + $apps[$x]['cache']['key'] = "directory.\${extension}@\${domain_name}"; //schema details $y=0;