You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by ha...@apache.org on 2019/01/20 17:01:55 UTC

[royale-asjs] branch develop updated: Need other method too.

This is an automated email from the ASF dual-hosted git repository.

harbs pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git


The following commit(s) were added to refs/heads/develop by this push:
     new 2a81c13  Need other method too.
2a81c13 is described below

commit 2a81c1395232ab54d1b39f10b9b8cd056c0e4f22
Author: Harbs <ha...@in-tools.com>
AuthorDate: Sun Jan 20 19:01:45 2019 +0200

    Need other method too.
---
 .../projects/MXRoyale/src/main/royale/mx/utils/Base64JSWrapper.as       | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/frameworks/projects/MXRoyale/src/main/royale/mx/utils/Base64JSWrapper.as b/frameworks/projects/MXRoyale/src/main/royale/mx/utils/Base64JSWrapper.as
index d3bd757..f3f94a0 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/utils/Base64JSWrapper.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/utils/Base64JSWrapper.as
@@ -37,7 +37,7 @@ package mx.utils
 		{
 			var base64js:Object = window["base64js"];
 			
-			return base64js.fromByteArray(bytes);
+			return base64js["fromByteArray"](bytes);
 			
 		}