Fix issue with editing notes for other avatars

This commit is contained in:
BlueWall
2013-12-16 15:43:34 -05:00
parent b03ec6137f
commit 141d771a93
2 changed files with 6 additions and 2 deletions

View File

@@ -546,6 +546,10 @@ namespace OpenSim.Data.MySQL
reader.Read();
notes.Notes = OSD.FromString((string)reader["notes"]);
}
else
{
notes.Notes = OSD.FromString("");
}
}
}
}