mirror of
https://github.com/opensim/opensim.git
synced 2026-08-07 17:55:48 +08:00
fix parse type of ExportSupported option
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user