fix for open async in RN Debug

This commit is contained in:
blagoev 2017-05-20 09:41:51 +03:00
parent cc2e685594
commit f4528ae6f5
1 changed files with 2 additions and 2 deletions

View File

@ -176,8 +176,8 @@ Object.defineProperties(Realm, {
},
},
_waitForDownload: {
value: function(_config) {
return rpc.callMethod(undefined, Realm[keys.id], '_waitForDownload', Array.from(arguments));
value: function(_config, callback) {
callback();
}
},
});