Skip to content

Commit

Permalink
Missed a database update where UUID is used.
Browse files Browse the repository at this point in the history
Bumped Version
  • Loading branch information
mdickson committed Jul 13, 2023
1 parent ff696e0 commit cd76839
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion OpenSim/Data/MySQL/MySQLSimulationData.cs
Original file line number Diff line number Diff line change
Expand Up @@ -858,7 +858,7 @@ public void StoreRegionEnvironmentSettings(UUID regionUUID, string settings)
{
cmd.CommandText = "REPLACE INTO `regionenvironment` (`region_id`, `llsd_settings`) VALUES (?region_id, ?llsd_settings)";

cmd.Parameters.AddWithValue("region_id", regionUUID);
cmd.Parameters.AddWithValue("region_id", regionUUID.ToString());
cmd.Parameters.AddWithValue("llsd_settings", settings);

ExecuteNonQuery(cmd);
Expand Down
10 changes: 8 additions & 2 deletions OpenSim/Framework/VersionInfo.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
/*






/*
* Copyright (c) Contributors, http://opensimulator.org/
* See CONTRIBUTORS.TXT for a full list of copyright holders.
*
Expand Down Expand Up @@ -33,7 +39,7 @@ public class VersionInfo
{
public const string VersionNumber = "0.9.2.2";
public const string AssemblyVersionNumber = "0.9.2.2";
public const string Release = "8588";
public const string Release = "8593";

public const Flavour VERSION_FLAVOUR = Flavour.Dev;

Expand Down

0 comments on commit cd76839

Please sign in to comment.