Auto storing invitations is a pro feature

This commit is contained in:
M66B 2022-11-01 20:32:48 +01:00
parent 3021ef9715
commit 4a9fd7e923
2 changed files with 5 additions and 1 deletions

4
FAQ.md
View File

@ -5083,6 +5083,10 @@ Amazon never responded to an issue reported about this.
* Grant permissions via setup step 2 of the main settings screen * Grant permissions via setup step 2 of the main settings screen
* Select a calendar in the accounts settings under *Manual setup and account options* * Select a calendar in the accounts settings under *Manual setup and account options*
Invitations will be stored automatically as tentative. Updates and cancels will be processed as expected.
This feature is available since version 1.1996.
This feature is not available in the Play store version of the app due to the permissions required. This feature is not available in the Play store version of the app due to the permissions required.
This is a pro feature. This is a pro feature.

View File

@ -1868,7 +1868,7 @@ public class FragmentAccount extends FragmentBase {
break; break;
case REQUEST_CALENDAR: case REQUEST_CALENDAR:
if (resultCode == RESULT_OK && data != null) { if (resultCode == RESULT_OK && data != null) {
if (ActivityBilling.isPro(getContext()) || true) { if (ActivityBilling.isPro(getContext())) {
Bundle args = data.getBundleExtra("args"); Bundle args = data.getBundleExtra("args");
calendar = args.getString("account"); calendar = args.getString("account");
} else } else