A critical vulnerability was discovered in React Server Components (Next.js). Our systems remain protected but we advise to update packages to newest version. Learn More.
AI OnAI Off
A critical vulnerability was discovered in React Server Components (Next.js). Our systems remain protected but we advise to update packages to newest version. Learn More.
Found a bug in Mediachase.Commerce 13.28.0
Guid? IOrderGroup.Organization
{
get
{
if (string.IsNullOrEmpty(OwnerOrg))
{
return null;
}
if (Guid.TryParse(OwnerOrg, out var result))
{
return result;
}
return null;
}
set
{
if (value.HasValue)
{
OwnerOrg = value.ToString();
}
OwnerOrg = null;
}
}
The setter is always setting OwnerOrg to null.
Workaround:
Use OwnerOrg field (string) instead.