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
Charles Krinke 2008-08-27 02:45:10 +00:00
parent 84cdebe470
commit e2b0852c93
1 changed files with 1 additions and 1 deletions

View File

@ -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