correct app passwords link

Since some versions ago, the path/url for the app password settings is `/settings/user/security#security` instead of `/settings/personal#apppasswords`
This commit is contained in:
Joda Stößer 2019-02-14 05:26:21 +01:00 committed by GitHub
parent c0d0d39d8d
commit 9393626ec2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -148,7 +148,7 @@ QString HttpCredentialsGui::requestAppPasswordText(const Account *account)
} else if (version >= Account::makeServerVersion(12, 0, 0)) {
url += QLatin1String("/index.php/settings/personal#security");
} else if (version >= Account::makeServerVersion(11, 0, 0)) {
url += QLatin1String("/index.php/settings/personal#apppasswords");
url += QLatin1String("/index.php/settings/user/security#security");
} else {
return QString();
}