Skip to content

Commit

Permalink
squash: Make recorder prefixes configurable.
Browse files Browse the repository at this point in the history
  • Loading branch information
damencho committed Dec 4, 2024
1 parent b597f36 commit 16230a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/prosody-plugins/util.lib.lua
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ local roomless_iqs = {};

local OUTBOUND_SIP_JIBRI_PREFIXES = { 'outbound-sip-jibri@', 'sipjibriouta@', 'sipjibrioutb@' };
local INBOUND_SIP_JIBRI_PREFIXES = { 'inbound-sip-jibri@', 'sipjibriina@', 'sipjibriina@' };
local RECORDER_PREFIXES = { 'recorder@recorder.', 'jibria@recorder.', 'jibrib@recorder.' };
local RECORDER_PREFIXES = module:get_option_inherited_set('recorder_prefixes', { 'recorder@recorder.', 'jibria@recorder.', 'jibrib@recorder.' });

local split_subdomain_cache = cache.new(1000);
local extract_subdomain_cache = cache.new(1000);
Expand Down

0 comments on commit 16230a9

Please sign in to comment.