Fix Tasker plugin settings

gtask_related_email
Alex Baker 6 years ago
parent feecd7913e
commit b46d439f46

@ -53,10 +53,10 @@ public abstract class AbstractFragmentPluginPreferenceActivity extends Injecting
if (null != resultBundle) { if (null != resultBundle) {
String blurb = getResultBlurb(resultBundle); String blurb = getResultBlurb(resultBundle);
Intent resultIntent = new Intent(); Bundle result = new Bundle();
resultIntent.putExtra(com.twofortyfouram.locale.api.Intent.EXTRA_BUNDLE, resultBundle); result.putBundle(com.twofortyfouram.locale.api.Intent.EXTRA_BUNDLE, resultBundle);
resultIntent.putExtra(com.twofortyfouram.locale.api.Intent.EXTRA_STRING_BLURB, blurb); result.putString(com.twofortyfouram.locale.api.Intent.EXTRA_STRING_BLURB, blurb);
setResult(RESULT_OK, resultIntent); mergeResults(result);
} }
} }
} }

Loading…
Cancel
Save