mirror of
https://github.com/opensim/opensim.git
synced 2026-08-04 16:22:50 +08:00
Changed asset CreatorID to a string
This commit is contained in:
@@ -122,7 +122,7 @@ namespace OpenSim.Data.MySQL
|
||||
{
|
||||
if (dbReader.Read())
|
||||
{
|
||||
asset = new AssetBase(assetID, (string)dbReader["name"], (sbyte)dbReader["assetType"], UUID.Zero);
|
||||
asset = new AssetBase(assetID, (string)dbReader["name"], (sbyte)dbReader["assetType"], UUID.Zero.ToString());
|
||||
asset.Data = (byte[])dbReader["data"];
|
||||
asset.Description = (string)dbReader["description"];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user