Skip to content

Commit

Permalink
AMF3: One more try
Browse files Browse the repository at this point in the history
  • Loading branch information
jgranick committed May 21, 2024
1 parent 678070e commit aed023c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/openfl/utils/_internal/format/amf3/AMF3Tools.hx
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ class AMF3Tools
{
v[i] = unwrapValue(a[i], parent);
}
return cast v;
return v;
}
else if (className == "Float")
{
Expand All @@ -331,7 +331,7 @@ class AMF3Tools
{
v[i] = unwrapValue(a[i], parent);
}
return cast v;
return v;
}
else
{
Expand All @@ -340,7 +340,7 @@ class AMF3Tools
{
v[i] = unwrapValue(a[i], parent);
}
return cast v;
return v;
}
case ABytes(b):
var ba = ByteArray.fromBytes(b);
Expand Down

0 comments on commit aed023c

Please sign in to comment.