From baf6917a461c13417aa14a2989453466d8ae575e Mon Sep 17 00:00:00 2001 From: UbitUmarov Date: Fri, 6 May 2022 01:38:42 +0100 Subject: [PATCH] fix parse type of ExportSupported option --- OpenSim/Services/GridService/GridService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenSim/Services/GridService/GridService.cs b/OpenSim/Services/GridService/GridService.cs index 41da5ab912..e9d4d9772e 100755 --- a/OpenSim/Services/GridService/GridService.cs +++ b/OpenSim/Services/GridService/GridService.cs @@ -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(config, "GatekeeperURIAlias", sections, string.Empty);