open profile links with HTTPS
This commit is contained in:
parent
b06706a895
commit
04198d6028
1 changed files with 2 additions and 2 deletions
|
@ -93,7 +93,7 @@ void PictureDialog::setSnapmaticPicture(SnapmaticPicture *picture, QString pictu
|
|||
foreach (const QString &player, plyrsList)
|
||||
{
|
||||
QString playerName = profileDB->getPlayerName(player.toInt());
|
||||
plyrsStr.append(", <a href=\"http://socialclub.rockstargames.com/member/");
|
||||
plyrsStr.append(", <a href=\"https://socialclub.rockstargames.com/member/");
|
||||
plyrsStr.append(playerName);
|
||||
plyrsStr.append("/");
|
||||
plyrsStr.append(player);
|
||||
|
@ -136,7 +136,7 @@ void PictureDialog::playerNameUpdated()
|
|||
foreach (const QString &player, plyrsList)
|
||||
{
|
||||
QString playerName = profileDB->getPlayerName(player.toInt());
|
||||
plyrsStr.append(", <a href=\"http://socialclub.rockstargames.com/member/");
|
||||
plyrsStr.append(", <a href=\"https://socialclub.rockstargames.com/member/");
|
||||
if (playerName != player)
|
||||
{
|
||||
plyrsStr.append(playerName);
|
||||
|
|
Loading…
Reference in a new issue