Upgrade from version 5.4.2 to 5.5.1 – Problem with Voicemail Recording Instructions and Recording Options.

soglinda

New Member
Feb 17, 2023
12
0
1
38
I kindly ask those who work with FusionPBX to help me.
I configured Voicemail for a beneficiary with a greeting but without additional instructions: voicemail_recording_instructions "false" and voicemail_recording_options "false".
After upgrading from 5.4.2 to 5.5.1, I have a problem: the instructions were reactivated, and from the web interface they cannot be switched — they stay permanently set to true.

Not even if I change it directly in the database like this:
update v_voicemails SET voicemail_recording_options = 'false' where voicemail_uuid = XXXXXXXXXXXXX
 

Attachments

  • scrin voicemail.jpg
    scrin voicemail.jpg
    20.6 KB · Views: 6
There were many changes recently that require running Schema, Schema -> Data Types, Application Defaults, and Group Permissions on the upgrade page.

update v_voicemails SET voicemail_recording_options = 'false' where voicemail_uuid = XXXXXXXXXXXXX
This didn't work since a lot of data types changed from text to boolean, so the false needs to not have quotes around it.

update v_voicemails SET voicemail_recording_options = false where voicemail_uuid = 'XXXXXXXXXXXXX';