forked from qt-creator/qt-creator
Axivion: Change the credential key
Make it user @ server. Change-Id: I62e2c88ade5cc984ba11f718c3db292e4075e5e4 Reviewed-by: Andreas Loth <andreas.loth@qt.io> Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
@@ -122,7 +122,7 @@ static QString credentialKey()
|
||||
QString escaped = string;
|
||||
return escaped.replace('\\', "\\\\").replace('@', "\\@");
|
||||
};
|
||||
return escape(settings().server.dashboard) + '@' + escape(settings().server.username);
|
||||
return escape(settings().server.username) + '@' + escape(settings().server.dashboard);
|
||||
}
|
||||
|
||||
static DashboardInfo toDashboardInfo(const QUrl &source, const Dto::DashboardInfoDto &infoDto)
|
||||
|
Reference in New Issue
Block a user