Fix app_config typo for recordings.

storage_type was never initialized as a setting in the database due to the y counter being reset to 0 after it. This was causing the storage_type setting to not show up in the UI.
This commit is contained in:
Andrew Querol
2021-02-15 13:53:37 -06:00
committed by GitHub
parent 3f6ad8af74
commit b92ed17f17

View File

@@ -92,8 +92,7 @@
$apps[$x]['default_settings'][$y]['default_setting_value'] = "base64";
$apps[$x]['default_settings'][$y]['default_setting_enabled'] = "false";
$apps[$x]['default_settings'][$y]['default_setting_description'] = "";
$y=0;
$y++;
$apps[$x]['default_settings'][$y]['default_setting_uuid'] = "960828e1-8d6b-4381-86c4-fa03fce4276a";
$apps[$x]['default_settings'][$y]['default_setting_category'] = "recordings";
$apps[$x]['default_settings'][$y]['default_setting_subcategory'] = "recording_max_length";