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

Commit 6977d42c authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Decode URI in RequestManageCredentials" into sc-dev

parents 8767313e b77e2b4f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -74,7 +74,7 @@ public class UriAuthenticationPolicyAdapter extends
    public void onBindViewHolder(UriAuthenticationPolicyAdapter.UriViewHolder holder,
            int position) {
        Uri uri = mUris.get(position);
        holder.mUriNameView.setText(uri.toString());
        holder.mUriNameView.setText(Uri.decode(uri.toString()));
    }

    @Override