fix parse type of ExportSupported option

This commit is contained in:
UbitUmarov
2022-05-06 01:38:42 +01:00
parent 68539cf3e6
commit baf6917a46

View File

@@ -204,7 +204,7 @@ namespace OpenSim.Services.GridService
if (!string.IsNullOrEmpty(configVal))
m_ExtraFeatures["GridStatusRSS"] = configVal;
m_ExtraFeatures["ExportSupported"] = gridConfig.GetString("ExportSupported", "true");
m_ExtraFeatures["ExportSupported"] = gridConfig.GetBoolean("ExportSupported", true);
string[] sections = new string[] { "Const, Startup", "Hypergrid", "GatekeeperService" };
string gatekeeperURIAlias = Util.GetConfigVarFromSections<string>(config, "GatekeeperURIAlias", sections, string.Empty);