Fix typo in status message for asset files

Signed-off-by: Kat Tschan <kat@kattschan.co.uk>
This commit is contained in:
Kat Tschan 2025-09-20 16:39:53 -04:00 committed by GitHub
parent 28b755cf04
commit 418b84a599
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);