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

Commit 211f017e authored by Reema Bajwa's avatar Reema Bajwa
Browse files

Small fix an issue with extracting the provider list in the UI app for the get flow

Test: Built locally

Change-Id: I76aa910104eb04a5dac1f40ed45ba64e0757f19d
parent fe5097cf
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -97,7 +97,7 @@ public class Entry implements Parcelable {
    protected Entry(@NonNull Parcel in) {
        String key = in.readString8();
        String subkey = in.readString8();
        Slice slice = Slice.CREATOR.createFromParcel(in);
        Slice slice = in.readTypedObject(Slice.CREATOR);

        mKey = key;
        AnnotationValidations.validate(NonNull.class, null, mKey);
@@ -167,9 +167,9 @@ public class Entry implements Parcelable {
    public void writeToParcel(@NonNull Parcel dest, int flags) {
        dest.writeString8(mKey);
        dest.writeString8(mSubkey);
        mSlice.writeToParcel(dest, flags);
        mPendingIntent.writeToParcel(dest, flags);
        mFrameworkExtrasIntent.writeToParcel(dest, flags);
        dest.writeTypedObject(mSlice, flags);
        dest.writeTypedObject(mPendingIntent, flags);
        dest.writeTypedObject(mFrameworkExtrasIntent, flags);
    }

    @Override
+1 −1
Original line number Diff line number Diff line
@@ -75,7 +75,7 @@ class CredentialManagerRepo(
      RequestInfo.TYPE_GET ->
        intent.extras?.getParcelableArrayList(
          ProviderData.EXTRA_ENABLED_PROVIDER_DATA_LIST,
          DisabledProviderData::class.java
          GetCredentialProviderData::class.java
        ) ?: testGetCredentialProviderList()
      else -> {
        // TODO: fail gracefully