piotreky opened a new issue #930:
URL: https://github.com/apache/royale-asjs/issues/930
Built for the target 'JSRoyale'.
For the selected file, the 'name' property is correct, but the 'size'
property returns -1.
If I'm correct, the responsible code is in
org.apache.royale.file.beads.FileModel.as:
public function get size():Number
{
COMPILE::SWF
{
return _data.size;
}
COMPILE::JS
{
return blob ? blob.length : -1;
}
}
It seems that something is wrong with the '_blob' property.
Any ideas?
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]