mirror of
https://github.com/opensim/opensim.git
synced 2026-05-15 03:15:41 +08:00
Remove quotes from column selection in PGSQLUserProfilesData.GetAvatarNotes()
This may have been preventing it from working.
This commit is contained in:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user