diff options
author | Justin Clarke Casey | 2008-03-31 18:29:08 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-03-31 18:29:08 +0000 |
commit | 93303072dd4edbb7d41ed629787bd22494b30cc1 (patch) | |
tree | d4a9865accd96c68747bf889db46e5793533834b /OpenSim/Grid/UserServer | |
parent | * Log exceptions which make it up to the top of the http request frame, rathe... (diff) | |
download | opensim-SC_OLD-93303072dd4edbb7d41ed629787bd22494b30cc1.zip opensim-SC_OLD-93303072dd4edbb7d41ed629787bd22494b30cc1.tar.gz opensim-SC_OLD-93303072dd4edbb7d41ed629787bd22494b30cc1.tar.bz2 opensim-SC_OLD-93303072dd4edbb7d41ed629787bd22494b30cc1.tar.xz |
* Minor: If a user exists but has no inventory in standalone, automatically create new inventory folders
* This mirrors the grid behaviour
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Grid/UserServer/UserLoginService.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Grid/UserServer/UserLoginService.cs b/OpenSim/Grid/UserServer/UserLoginService.cs index 6d3a081..7917118 100644 --- a/OpenSim/Grid/UserServer/UserLoginService.cs +++ b/OpenSim/Grid/UserServer/UserLoginService.cs | |||
@@ -299,7 +299,7 @@ namespace OpenSim.Grid.UserServer | |||
299 | // In theory, the user will only ever be missing a root folder in situations where a grid | 299 | // In theory, the user will only ever be missing a root folder in situations where a grid |
300 | // which didn't previously run a grid wide inventory server is being transitioned to one | 300 | // which didn't previously run a grid wide inventory server is being transitioned to one |
301 | // which does. | 301 | // which does. |
302 | if (null == folders | folders.Count == 0) | 302 | if (null == folders || folders.Count == 0) |
303 | { | 303 | { |
304 | m_log.Warn( | 304 | m_log.Warn( |
305 | "[LOGIN]: " + | 305 | "[LOGIN]: " + |