a few fixes and cosmetics on some DB code

This commit is contained in:
UbitUmarov
2026-07-14 21:24:31 +01:00
parent 6ed9b246cf
commit 1b428a1825
6 changed files with 46 additions and 47 deletions

View File

@@ -406,7 +406,7 @@ namespace OpenSim.Data.MySQL
HashSet<UUID> exists = new HashSet<UUID>();
string ids = "'" + string.Join("','", uuids) + "'";
string sql = string.Format("SELECT ID FROM assets WHERE ID IN ({0})", ids);
string sql = $"SELECT ID FROM XAssetsMeta WHERE ID IN ({ids})";
using (MySqlConnection dbcon = new MySqlConnection(m_connectionString))
{