Mantis#2052. Thank you kindly, Avdleeuw for a patch that:
After having built revision 5992, OpenSim would start while issuing some errors regards updates to user profiles (Master Avatar, and other manually added avatars). Issue 2027 dealt with the MySQL part. This issue deals with the SQLite part.0.6.0-stable
parent
84cdebe470
commit
e2b0852c93
|
@ -806,7 +806,7 @@ namespace OpenSim.Data.SQLite
|
|||
row["webLoginKey"] = user.WebLoginKey;
|
||||
row["userFlags"] = user.UserFlags;
|
||||
row["godLevel"] = user.GodLevel;
|
||||
row["customType"] = user.CustomType;
|
||||
row["customType"] = user.CustomType == null ? "" : user.CustomType;
|
||||
row["partner"] = user.Partner.ToString();
|
||||
|
||||
// ADO.NET doesn't handle NULL very well
|
||||
|
|
Loading…
Reference in New Issue