From ba5a236922fef3e09f2af13ba46f461140bc5cf2 Mon Sep 17 00:00:00 2001 From: BlueWall Date: Thu, 27 Mar 2014 13:41:20 -0400 Subject: [PATCH] Profiles local StorageProvider fix, round 3 --- OpenSim/Services/UserProfilesService/UserProfilesServiceBase.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenSim/Services/UserProfilesService/UserProfilesServiceBase.cs b/OpenSim/Services/UserProfilesService/UserProfilesServiceBase.cs index 8eddc8a3b4..bc24ec2258 100644 --- a/OpenSim/Services/UserProfilesService/UserProfilesServiceBase.cs +++ b/OpenSim/Services/UserProfilesService/UserProfilesServiceBase.cs @@ -72,7 +72,7 @@ namespace OpenSim.Services.ProfilesService IConfig ProfilesConfig = config.Configs[configName]; if (ProfilesConfig != null) { - dllName = dbConfig.GetString("StorageProvider", dllName); + dllName = ProfilesConfig.GetString("StorageProvider", dllName); connString = ProfilesConfig.GetString("ConnectionString", connString); realm = ProfilesConfig.GetString("Realm", realm); }