mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 11:45:36 +02:00
return correct ATP url from upload dialog
This commit is contained in:
parent
8ee27bca2b
commit
43d2c0653d
1 changed files with 1 additions and 1 deletions
|
@ -89,7 +89,7 @@ void AssetUploadDialogFactory::handleUploadFinished(AssetUpload* upload, const Q
|
|||
// setup the line edit to hold the copiable text
|
||||
QLineEdit* lineEdit = new QLineEdit;
|
||||
|
||||
QString atpURL = QString("%1://%2.%3").arg(ATP_SCHEME).arg(hash).arg(upload->getExtension());
|
||||
QString atpURL = QString("%1:%2.%3").arg(ATP_SCHEME).arg(hash).arg(upload->getExtension());
|
||||
|
||||
// set the ATP URL as the text value so it's copiable
|
||||
lineEdit->insert(atpURL);
|
||||
|
|
Loading…
Reference in a new issue