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