3
0
Fork 0
mirror of https://github.com/JulianGro/overte.git synced 2025-04-18 09:37:54 +02:00

Merge pull request from SamGondelman/interstitial

Case 19682: Disable interstitial on android
This commit is contained in:
Sam Gateau 2018-11-07 10:47:31 -08:00 committed by GitHub
commit e28560a9c7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -231,7 +231,11 @@ private:
QString _pendingPath;
QTimer _settingsTimer;
mutable ReadWriteLockable _interstitialModeSettingLock;
Setting::Handle<bool> _enableInterstitialMode{ "enableInterstitialMode", true };
#ifdef Q_OS_ANDROID
Setting::Handle<bool> _enableInterstitialMode{ "enableInterstitialMode", false };
#else
Setting::Handle<bool> _enableInterstitialMode { "enableInterstitialMode", true };
#endif
QSet<QString> _domainConnectionRefusals;
bool _hasCheckedForAccessToken { false };