1
0
Fork 0
mirror of https://github.com/syncthing/syncthing-android.git synced 2024-11-22 12:21:15 +00:00

MainActivity.java: Don't show Usage Reporting dialog if aready decided

This commit is contained in:
Andrey D 2018-01-26 09:41:55 +02:00 committed by GitHub
parent a989e4df97
commit a0a40b6f17
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -110,7 +110,7 @@ public class MainActivity extends StateDialogActivity
mDrawerFragment.requestGuiUpdate();
getApi().getSystemInfo(systemInfo -> {
if (new Date().getTime() > getFirstStartTime() + USAGE_REPORTING_DIALOG_DELAY &&
getApi().getOptions().isUsageReportingDecided(systemInfo.urVersionMax)) {
!getApi().getOptions().isUsageReportingDecided(systemInfo.urVersionMax)) {
showUsageReportingDialog();
}
});