File tree 1 file changed +10
-9
lines changed
1 file changed +10
-9
lines changed Original file line number Diff line number Diff line change @@ -240,15 +240,16 @@ public UIDialogListener(ConnectPlugin fba){
240
240
public void onComplete (Bundle values ) {
241
241
// Handle a successful dialog
242
242
Log .d (TAG ,values .toString ());
243
- try {
244
- JSONObject response = new JSONObject ();
245
- for (String key : values .keySet ()) {
246
- response .put (key , values .getString (key ));
247
- }
248
- this .fba .cb .success (response );
249
- } catch (JSONException e ) {
250
- e .printStackTrace ();
251
- }
243
+ JSONObject response = new JSONObject ();;
244
+ try {
245
+ for (String key : values .keySet ()) {
246
+ response .put (key , values .getString (key ));
247
+ }
248
+ } catch (JSONException e ) {
249
+ e .printStackTrace ();
250
+ } finally {
251
+ this .fba .cb .success (response );
252
+ }
252
253
}
253
254
254
255
public void onFacebookError (FacebookError e ) {
You can’t perform that action at this time.
0 commit comments