Skip to content

Commit

Permalink
MSPB-254: fix usersFormatCallForwardData (#435)
Browse files Browse the repository at this point in the history
  • Loading branch information
mavriciomart authored Jul 12, 2022
1 parent c5f40fa commit cc44587
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion submodules/users/users.js
Original file line number Diff line number Diff line change
Expand Up @@ -2565,7 +2565,7 @@ define(function(require) {
// cfmode is failover if call_failover.enabled = true
// cfmode is on if call_failover.enabled = false && call_forward.enabled = true
var callForwardMode = 'off';
if (!isFailoverEnabled) {
if (isFailoverEnabled) {
callForwardMode = 'failover';
} else if (isCallForwardEnabled) {
callForwardMode = 'on';
Expand Down

0 comments on commit cc44587

Please sign in to comment.