Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f59f8d28 authored by Gary Mai's avatar Gary Mai Committed by android-build-merger
Browse files

Only send feedback for ExternalAccountType if not from tests am: e83e621c

am: 0574a59b

Change-Id: I52e3fae869639451a8afbcfe5f0a0bdffe4ae17e
parents 6be2e0f8 0574a59b
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -153,7 +153,12 @@ public class ExternalAccountType extends BaseAccountType {
            }
            error.append(" for external package ");
            error.append(packageName);
            FeedbackHelper.sendFeedback(context, TAG, "Failed to build external account type", e);
            // Only send feedback if not from tests. There are tests that expect failures so no need
            // to report those.
            if (injectedMetadata == null) {
                FeedbackHelper.sendFeedback(context, TAG, "Failed to build external account type",
                        e);
            }
            return;
        } finally {
            if (parser != null) {