When updating the CreatorId of an inventory item, automatically update the CreatorIdAsUuid field as well
Resolves http://opensimulator.org/mantis/view.php?id=69330.8.0.3
parent
5b2af7f99e
commit
edc04d4184
|
@ -82,12 +82,15 @@ namespace OpenSim.Framework
|
||||||
set
|
set
|
||||||
{
|
{
|
||||||
m_creatorId = value;
|
m_creatorId = value;
|
||||||
|
|
||||||
|
if ((m_creatorId == null) || !UUID.TryParse(m_creatorId, out m_creatorIdAsUuid))
|
||||||
|
m_creatorIdAsUuid = UUID.Zero;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
protected string m_creatorId;
|
protected string m_creatorId;
|
||||||
|
|
||||||
/// <value>
|
/// <value>
|
||||||
/// The CreatorId expressed as a UUID.tely
|
/// The CreatorId expressed as a UUID.
|
||||||
/// </value>
|
/// </value>
|
||||||
public UUID CreatorIdAsUuid
|
public UUID CreatorIdAsUuid
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue