Merge pull request #921 from amnezia-vpn/fix/android-enc-conf

Fix config encryption on Android
This commit is contained in:
pokamest 2024-08-20 10:47:09 +01:00 committed by GitHub
commit 01413e5a4c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -185,7 +185,7 @@ QByteArray SecureQSettings::decryptText(const QByteArray &ba) const
bool SecureQSettings::encryptionRequired() const
{
#ifdef Q_OS_LINUX
#if defined(Q_OS_LINUX) && !defined(Q_OS_ANDROID)
// QtKeyChain failing on Linux
return false;
#endif