From fe425a82849de2059f07296df01c24bc163d8cf8 Mon Sep 17 00:00:00 2001 From: UbitUmarov Date: Thu, 13 Nov 2025 04:07:18 +0000 Subject: [PATCH] cosmetics to kick github to compile the fix to the typo on sqlile --- OpenSim/Data/SQLite/Resources/UserProfiles.migrations | 1 + .../Framework/AssetLoader/Filesystem/AssetLoaderFileSystem.cs | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/OpenSim/Data/SQLite/Resources/UserProfiles.migrations b/OpenSim/Data/SQLite/Resources/UserProfiles.migrations index 0e4d4635ae..9843017a84 100644 --- a/OpenSim/Data/SQLite/Resources/UserProfiles.migrations +++ b/OpenSim/Data/SQLite/Resources/UserProfiles.migrations @@ -92,6 +92,7 @@ commit; :VERSION 3 # ------------------------------- begin; + CREATE TABLE IF NOT EXISTS usersettings ( useruuid char(36) NOT NULL, imviaemail binary(1) NOT NULL, diff --git a/OpenSim/Framework/AssetLoader/Filesystem/AssetLoaderFileSystem.cs b/OpenSim/Framework/AssetLoader/Filesystem/AssetLoaderFileSystem.cs index 4987eeff93..71eb83c964 100644 --- a/OpenSim/Framework/AssetLoader/Filesystem/AssetLoaderFileSystem.cs +++ b/OpenSim/Framework/AssetLoader/Filesystem/AssetLoaderFileSystem.cs @@ -41,8 +41,8 @@ namespace OpenSim.Framework.AssetLoader.Filesystem { public class AssetLoaderFileSystem : IAssetLoader { - private static readonly UUID LIBRARY_OWNER_ID = new UUID("11111111-1111-0000-0000-000100bba000"); - private static readonly string LIBRARY_OWNER_IDstr = "11111111-1111-0000-0000-000100bba000"; + private const string LIBRARY_OWNER_IDstr = "11111111-1111-0000-0000-000100bba000"; + private static readonly UUID LIBRARY_OWNER_ID = new UUID(LIBRARY_OWNER_IDstr); private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);