Skip to content

Commit 613c1e4

Browse files
committed
Fixed indentation and added success callback on JSONException.
1 parent 7e4a62c commit 613c1e4

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

src/android/ConnectPlugin.java

+10-9
Original file line numberDiff line numberDiff line change
@@ -240,15 +240,16 @@ public UIDialogListener(ConnectPlugin fba){
240240
public void onComplete(Bundle values) {
241241
// Handle a successful dialog
242242
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+
}
252253
}
253254

254255
public void onFacebookError(FacebookError e) {

0 commit comments

Comments
 (0)