1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

fix(toxme): Remove HTML tags from ID to un-break toxme integration

Due to the colours, the current implementation sends a bunch of html tags along with the ID, which obviously isn't desirable.
To remove these tags, I am using the same implementation as in copyIdClicked .
This commit is contained in:
LittleVulpix 2017-09-01 20:12:52 +02:00 committed by GitHub
parent 89198f5e2d
commit 5af1b4af73

View File

@ -512,6 +512,7 @@ void ProfileForm::onRegisterButtonClicked()
bodyUI->toxmeUpdateButton->setText(tr("Update (processing)"));
QString id = toxId->text();
id.remove(QRegularExpression("<[^>]*>"));
QString bio = bodyUI->toxmeBio->text();
QString server = bodyUI->toxmeServersList->currentText();
bool privacy = bodyUI->toxmePrivacy->isChecked();