fix some odd sql queries ap not in use

This commit is contained in:
UbitUmarov
2018-01-12 18:07:37 +00:00
parent 271fab6ac2
commit fa78a6fd90
3 changed files with 4 additions and 4 deletions

View File

@@ -845,7 +845,7 @@ namespace OpenSim.Data.PGSQL
query = "SELECT \"profileImage\", \"profileFirstImage\" FROM \"userprofile\" WHERE \"useruuid\" = :Id";
using (NpgsqlCommand cmd = new NpgsqlCommand(string.Format(query, "\"userpicks\""), dbcon))
using (NpgsqlCommand cmd = new NpgsqlCommand(query, dbcon))
{
cmd.Parameters.Add(m_database.CreateParameter("Id", avatarId));