correct app passwords link
authorJoda Stößer <SimJoSt@users.noreply.github.com>
Thu, 14 Feb 2019 04:26:21 +0000 (05:26 +0100)
committerGitHub <noreply@github.com>
Thu, 14 Feb 2019 04:26:21 +0000 (05:26 +0100)
Since some versions ago, the path/url for the app password settings is `/settings/user/security#security` instead of `/settings/personal#apppasswords`

src/gui/creds/httpcredentialsgui.cpp

index 25a057eb8cec8f0b8333077c1b8f41bfd2e19094..a59d05ea5c460d93c35fa9fbcd396af31812f29f 100644 (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();
     }