Commit a1f1a1f 1 parent 9c5b244 commit a1f1a1f Copy full SHA for a1f1a1f
File tree 2 files changed +9
-1
lines changed
2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change
1
+ Bugfix: strip user information from new-connection URL
2
+
3
+ Credentials in the URL are not supported for some time. This fix strips
4
+ them from the URL before storage and using it to authenticate the client
5
+ to the server.
6
+
7
+ https://github.com/owncloud/client/issues/11497
8
+ https://github.com/owncloud/client/pull/11509
Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ void ServerUrlSetupWizardState::evaluatePage()
72
72
userProvidedUrl.prepend (defaultUrlSchemeC);
73
73
}
74
74
75
- return QUrl::fromUserInput (userProvidedUrl);
75
+ return QUrl::fromUserInput (userProvidedUrl). adjusted (QUrl::RemoveUserInfo) ;
76
76
}();
77
77
78
78
// (ab)use the account builder as temporary storage for the URL we are about to probe (after sanitation)
You can’t perform that action at this time.
0 commit comments