Remove quotes from column selection in PGSQLUserProfilesData.GetAvatarNotes()
This may have been preventing it from working.sedebug
parent
b38a552fd6
commit
0cc75a0a3c
|
@ -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();
|
||||
|
|
Loading…
Reference in New Issue