Convert an sqlite user LLUUID I'd missed

afrisby
Justin Clarke Casey 2007-12-20 22:42:24 +00:00
parent 1eb46424c7
commit 30a8e27c40
1 changed files with 1 additions and 1 deletions

View File

@ -466,7 +466,7 @@ namespace OpenSim.Framework.Data.SQLite
private void fillUserRow(DataRow row, UserProfileData user)
{
row["UUID"] = user.UUID;
row["UUID"] = Util.ToRawUuidString(user.UUID);
row["username"] = user.username;
row["surname"] = user.surname;
row["passwordHash"] = user.passwordHash;