Fix typo in status message for asset files (#4161)

This commit is contained in:
Alexandru Ionut Tripon 2025-09-22 00:02:00 +03:00 committed by GitHub
commit f7e58723e0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -77,7 +77,7 @@ void AssetUpdateTask::assetIndexFinished()
if (resourceURL != BuildConfig.DEFAULT_RESOURCE_BASE) {
source = QUrl(resourceURL).host();
}
setStatus(tr("Getting the assets files from %1...").arg(source));
setStatus(tr("Getting the asset files from %1...").arg(source));
downloadJob = job;
connect(downloadJob.get(), &NetJob::succeeded, this, &AssetUpdateTask::emitSucceeded);
connect(downloadJob.get(), &NetJob::failed, this, &AssetUpdateTask::assetsFailed);