Fixes and temporary fixes for returning results
This commit is contained in:
@@ -181,8 +181,6 @@ public class KeychainIntentService extends IntentService
|
||||
// export
|
||||
public static final String RESULT_EXPORT = "exported";
|
||||
|
||||
public static final String RESULT_IMPORT = "result";
|
||||
|
||||
public static final String RESULT_CONSOLIDATE = "consolidate_result";
|
||||
|
||||
Messenger mMessenger;
|
||||
|
||||
@@ -442,7 +442,9 @@ public class OperationResultParcel implements Parcelable {
|
||||
@Override
|
||||
public void writeToParcel(Parcel dest, int flags) {
|
||||
dest.writeInt(mResult);
|
||||
dest.writeTypedList(mLog.toList());
|
||||
if (mLog != null) {
|
||||
dest.writeTypedList(mLog.toList());
|
||||
}
|
||||
}
|
||||
|
||||
public static final Creator<OperationResultParcel> CREATOR = new Creator<OperationResultParcel>() {
|
||||
|
||||
Reference in New Issue
Block a user