From ff63c7ce1a1e8fd0623293b11f0d9bfeae408fca Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Tue, 18 Dec 2018 20:08:42 -0700 Subject: [PATCH] Update index.lua --- resources/install/scripts/app/call_block/index.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/install/scripts/app/call_block/index.lua b/resources/install/scripts/app/call_block/index.lua index e96732fcc9..51000d85a9 100644 --- a/resources/install/scripts/app/call_block/index.lua +++ b/resources/install/scripts/app/call_block/index.lua @@ -149,7 +149,7 @@ This method causes the script to get its manadatory arguments directly from the if (found_enabled == "true") then --set the cache cache_data = "found_cid_num=" .. found_cid_num .. "&found_uuid=" .. found_uuid .. "&found_enabled=" .. found_enabled .. "&found_action=" .. found_action .. "&found_count=" .. found_count; - local ok, err = cache.set(cache_key, cache_data, expire["dialplan"]); + local ok, err = cache.set(cache_key, cache_data, expire["call_block"]); if debug["cache"] then if ok then freeswitch.consoleLog("notice", "[call_block] " .. cache_key .. " stored in the cache\n");