Remove quotes from field selection in PGSQLUserProfilesData.GetAvatarPicks()
This may have been preventing it from working.sedebug
parent
43b094f549
commit
b38a552fd6
|
@ -308,7 +308,7 @@ namespace OpenSim.Data.PGSQL
|
|||
{
|
||||
string query = string.Empty;
|
||||
|
||||
query += "SELECT \"pickuuid\",\"name\" FROM userpicks WHERE ";
|
||||
query += "SELECT pickuuid, name FROM userpicks WHERE ";
|
||||
query += "creatoruuid = :Id";
|
||||
OSDArray data = new OSDArray();
|
||||
|
||||
|
|
Loading…
Reference in New Issue