| Summary: | Unsupported Action: Authorization failed | ||
|---|---|---|---|
| Product: | [Frameworks and Libraries] frameworks-kio | Reporter: | Andreas Schwab <schwab> |
| Component: | general | Assignee: | Konqueror Bugs <konqueror-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | CC: | kdelibs-bugs-null |
| Priority: | NOR | ||
| Version First Reported In: | 5.29.0 | ||
| Target Milestone: | --- | ||
| Platform: | openSUSE | ||
| OS: | Linux | ||
| Latest Commit: | https://commits.kde.org/kdelibs/b6f20222cc1192d9329e170211049ad6c867cfe2 | Version Fixed/Implemented In: | |
| Sentry Crash Report: | |||
|
Description
Andreas Schwab
2016-12-05 23:39:34 UTC
This is really a kio bug. Workaround:
Index: kio-5.29.0/src/ioslaves/http/http.cpp
===================================================================
--- kio-5.29.0.orig/src/ioslaves/http/http.cpp
+++ kio-5.29.0/src/ioslaves/http/http.cpp
@@ -5525,7 +5525,7 @@ bool HTTPProtocol::handleAuthenticationH
if (!authTokens.isEmpty()) {
goto try_next_auth_scheme;
} else {
- error(ERR_UNSUPPORTED_ACTION, i18n("Authorization failed."));
+ //error(ERR_UNSUPPORTED_ACTION, i18n("Authorization failed."));
authRequiresAnotherRoundtrip = false;
}
//### return false; ?
Git commit 1740dae897ad8f78192093788f25290ef74e205a by Albert Astals Cid, on behalf of Andreas Schwab. Committed on 17/04/2017 at 10:49. Pushed by aacid into branch 'master'. http slave: send error page after authorization failure Differential Revision: https://phabricator.kde.org/D5368 M +3 -1 src/ioslaves/http/http.cpp https://commits.kde.org/kio/1740dae897ad8f78192093788f25290ef74e205a Git commit b6f20222cc1192d9329e170211049ad6c867cfe2 by Albert Astals Cid, on behalf of Andreas Schwab. Committed on 17/04/2017 at 10:52. Pushed by aacid into branch 'KDE/4.14'. http slave: send error page after authorization failure Backport from KF5 kio M +3 -1 kioslave/http/http.cpp https://commits.kde.org/kdelibs/b6f20222cc1192d9329e170211049ad6c867cfe2 |