Skip to content

Commit

Permalink
Merge pull request #921 from amnezia-vpn/fix/android-enc-conf
Browse files Browse the repository at this point in the history
Fix config encryption on Android
  • Loading branch information
pokamest authored Aug 20, 2024
2 parents 743304c + 73516c2 commit 01413e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/secure_qsettings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 01413e5

Please sign in to comment.