You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openmeetings.apache.org by so...@apache.org on 2020/04/18 01:41:26 UTC

[openmeetings] branch master updated: [OPENMEETINGS-2272] cfg type is changed

This is an automated email from the ASF dual-hosted git repository.

solomax pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/openmeetings.git


The following commit(s) were added to refs/heads/master by this push:
     new bbd77df  [OPENMEETINGS-2272] cfg type is changed
bbd77df is described below

commit bbd77df64c317dc7f12ccc95b7ba15dff4d43d1e
Author: Maxim Solodovnik <so...@gmail.com>
AuthorDate: Sat Apr 18 08:41:09 2020 +0700

    [OPENMEETINGS-2272] cfg type is changed
---
 .../java/org/apache/openmeetings/installation/ImportInitvalues.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/openmeetings-install/src/main/java/org/apache/openmeetings/installation/ImportInitvalues.java b/openmeetings-install/src/main/java/org/apache/openmeetings/installation/ImportInitvalues.java
index 671699a..d714600 100644
--- a/openmeetings-install/src/main/java/org/apache/openmeetings/installation/ImportInitvalues.java
+++ b/openmeetings-install/src/main/java/org/apache/openmeetings/installation/ImportInitvalues.java
@@ -352,7 +352,7 @@ public class ImportInitvalues {
 				"Number of chars needed in a user last name", "4.0.4");
 		addCfg(list, CONFIG_CHAT_SEND_ON_ENTER, String.valueOf(false), Configuration.Type.BOOL,
 				"Controls if chat message will be set on Enter (default: send on Ctrl+Enter)", "4.0.5");
-		addCfg(list, CONFIG_MP4_VIDEO_PRESET, "medium", Configuration.Type.BOOL,
+		addCfg(list, CONFIG_MP4_VIDEO_PRESET, "medium", Configuration.Type.STRING,
 				"Preset (encoder optimization settings) to be used while performing mp4 conversion."
 					+ "Valid values are: ultrafast, superfast, veryfast, faster, fast, medium, slow, slower, veryslow", "4.0.5");
 		addCfg(list, CONFIG_CAM_FPS, "30", Configuration.Type.NUMBER, "Camera FPS, should be positive number in range (0, 60]", VER_5_0_0);