Fixed crash

This commit is contained in:
M66B 2020-01-09 14:17:54 +01:00
parent 29e57063da
commit 54959174c2
2 changed files with 7 additions and 6 deletions

9
FAQ.md
View File

@ -2226,9 +2226,10 @@ Disabling *Partial fetch* will result in more memory usage.
<a name="faq111"></a>
**(111) Is OAuth supported?**
OAuth is supported for Gmail via the quick setup wizard.
OAuth for Gmail is supported via the quick setup wizard.
The Android account manager will be used to fetch and refresh OAuth tokens for selected on-device accounts.
OAuth for non on-device accounts is not support because Google requires an expensive ($15,000 to $75,000) [security audit](https://support.google.com/cloud/answer/9110914) for this.
OAuth for non on-device accounts is not supported
because Google requires an expensive ($15,000 to $75,000) [security audit](https://support.google.com/cloud/answer/9110914) for this.
OAuth for Yandex is supported via the quick setup wizard.
@ -2237,8 +2238,8 @@ Outlook, Live and Hotmail do not yet support OAuth for IMAP/SMTP connections, bu
OAuth access for Yahoo! was requested, but Yahoo! never responded to the request.
OAuth for AOL [was deactivated](https://www.programmableweb.com/api/aol-open-auth) by AOL.
Note that Verizon owns both AOL and Yahoo!, now both known as [Oath](https://en.wikipedia.org/wiki/Verizon_Media).
So, it is reasonable to assume that OAuth is not supported for Yahoo! anymore too.
Verizon owns both AOL and Yahoo!, collectively named [Oath inc](https://en.wikipedia.org/wiki/Verizon_Media).
So, it is reasonable to assume that OAuth is not supported by Yahoo! anymore too.
<br />

View File

@ -158,8 +158,8 @@ public class AdapterContact extends RecyclerView.Adapter<AdapterContact.ViewHold
? R.drawable.baseline_star_24 : R.drawable.baseline_star_border_24);
ivFavorite.setImageTintList(ColorStateList.valueOf(
contact.state == EntityContact.STATE_FAVORITE ? colorAccent : textColorSecondary));
ivFavorite.setContentDescription(context.getString(contact.state == EntityContact.STATE_FAVORITE
? R.string.title_accessibility_flagged : null));
ivFavorite.setContentDescription(contact.state == EntityContact.STATE_FAVORITE
? context.getString(R.string.title_accessibility_flagged) : null);
view.requestLayout();
}