kverweij / facebook-actionscript-api

Automatically exported from code.google.com/p/facebook-actionscript-api
0 stars 0 forks source link

typeError #1009 #405

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
While the API is initialiting, reload the web page. The exception shown in the 
capture.jpg will be launched.

I think that the solution'd be in com.facebook.graph.core, AbstractFacebook.as, 
method handleRequestLoad:

protected function handleRequestLoad(target:FacebookRequest):void 
{
            var resultCallback:Function = openRequests[target];
            if (resultCallback === null) {
                delete openRequests[target];
                /////////////////////////
                // Missing return here!!
                /////////////////////////
            }

(......)
}

Thanks

Original issue reported on code.google.com by vme...@gmail.com on 24 Jan 2012 at 12:19

Attachments:

GoogleCodeExporter commented 8 years ago
is it safe to add the "return" myself? Can a developer comment, please?

Original comment by vme...@gmail.com on 27 Jan 2012 at 9:11