mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-25 14:36:01 +03:00
handle proxy port correctly.
This commit is contained in:
parent
70838442c9
commit
80f2699c80
2 changed files with 2 additions and 3 deletions
|
@ -401,8 +401,6 @@ void Application::setupLogBrowser()
|
|||
|
||||
void Application::setupProxy()
|
||||
{
|
||||
//
|
||||
// TODO: push proxy information to csync
|
||||
//
|
||||
Mirall::MirallConfigFile cfg;
|
||||
switch(cfg.proxyType())
|
||||
|
|
|
@ -334,7 +334,8 @@ void CSyncThread::setConnectionDetails( const QString& user, const QString& pass
|
|||
_passwd = passwd;
|
||||
_proxyType = proxyType;
|
||||
_proxyHost = proxyHost;
|
||||
_proxyPort = proxyPort;
|
||||
_proxyPort = QString::number(proxyPort);
|
||||
qDebug() << "Proxy-Port: " << _proxyPort;
|
||||
_proxyUser = proxyUser;
|
||||
_proxyPwd = proxyPwd;
|
||||
_mutex.unlock();
|
||||
|
|
Loading…
Reference in a new issue