Open jeremypetrequin opened 10 years ago
Hello,
Line 77 the callback : fsOptions.onSubmit(selected_friends); is called even if the user canceled his share in the FB.ui('apprequest') popin ,
the workaround is to check if there is no error_code in response object :
if(!response.error_code) fsOptions.onSubmit(selected_friends);
Hello,
Line 77 the callback : fsOptions.onSubmit(selected_friends); is called even if the user canceled his share in the FB.ui('apprequest') popin ,
the workaround is to check if there is no error_code in response object :