mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-26 15:06:08 +03:00
Fix typo in usernamePrefillServerVersionMinSupportedMajor.
Signed-off-by: alex-z <blackslayer4@gmail.com>
This commit is contained in:
parent
b7be10f712
commit
6f5f3e769f
1 changed files with 2 additions and 2 deletions
|
@ -57,7 +57,7 @@ using namespace QKeychain;
|
|||
|
||||
namespace {
|
||||
constexpr int pushNotificationsReconnectInterval = 1000 * 60 * 2;
|
||||
constexpr int usernamePrefillServerVersinMinSupportedMajor = 24;
|
||||
constexpr int usernamePrefillServerVersionMinSupportedMajor = 24;
|
||||
constexpr int checksumRecalculateRequestServerVersionMinSupportedMajor = 24;
|
||||
}
|
||||
|
||||
|
@ -633,7 +633,7 @@ bool Account::serverVersionUnsupported() const
|
|||
|
||||
bool Account::isUsernamePrefillSupported() const
|
||||
{
|
||||
return serverVersionInt() >= makeServerVersion(usernamePrefillServerVersinMinSupportedMajor, 0, 0);
|
||||
return serverVersionInt() >= makeServerVersion(usernamePrefillServerVersionMinSupportedMajor, 0, 0);
|
||||
}
|
||||
|
||||
bool Account::isChecksumRecalculateRequestSupported() const
|
||||
|
|
Loading…
Reference in a new issue