Remove quotes from column selection in PGSQLUserProfilesData.GetAvatarNotes()

This may have been preventing it from working.
This commit is contained in:
Justin Clark-Casey (justincc)
2015-01-13 18:50:34 +00:00
parent b38a552fd6
commit 0cc75a0a3c

View File

@@ -495,7 +495,7 @@ namespace OpenSim.Data.PGSQL
{ // WIP
string query = string.Empty;
query += "SELECT \"notes\" FROM usernotes WHERE ";
query += "SELECT notes FROM usernotes WHERE ";
query += "useruuid = :Id AND ";
query += "targetuuid = :TargetId";
OSDArray data = new OSDArray();