diff options
couple of small fixes to try to fix support for multiple inventory servers in the loginservice
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Grid/UserServer/UserLoginService.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Grid/UserServer/UserLoginService.cs b/OpenSim/Grid/UserServer/UserLoginService.cs index 7c41b2e..9b2600f 100644 --- a/OpenSim/Grid/UserServer/UserLoginService.cs +++ b/OpenSim/Grid/UserServer/UserLoginService.cs | |||
@@ -422,10 +422,10 @@ namespace OpenSim.Grid.UserServer | |||
422 | protected override InventoryData GetInventorySkeleton(LLUUID userID, string serverUrl) | 422 | protected override InventoryData GetInventorySkeleton(LLUUID userID, string serverUrl) |
423 | { | 423 | { |
424 | string invUrl = m_config.InventoryUrl; | 424 | string invUrl = m_config.InventoryUrl; |
425 | //if (serverUrl != String.Empty) | 425 | if (!String.IsNullOrEmpty(serverUrl)) |
426 | //{ | 426 | { |
427 | // invUrl = serverUrl+"/"; | 427 | invUrl = serverUrl+"/"; |
428 | //} | 428 | } |
429 | 429 | ||
430 | m_log.DebugFormat( | 430 | m_log.DebugFormat( |
431 | "[LOGIN]: Contacting inventory service at {0} for inventory skeleton of user {1}", | 431 | "[LOGIN]: Contacting inventory service at {0} for inventory skeleton of user {1}", |