mirror of
https://github.com/overte-org/overte.git
synced 2025-04-23 15:13:41 +02:00
Remove extension from hash in AssetResourceRequest
This commit is contained in:
parent
628f275013
commit
c6493b1720
1 changed files with 1 additions and 1 deletions
|
@ -16,7 +16,7 @@
|
|||
void ATPResourceRequest::doSend() {
|
||||
// Make request to atp
|
||||
auto assetClient = DependencyManager::get<AssetClient>();
|
||||
auto hash = _url.path();
|
||||
auto hash = _url.path().split(".", QString::SkipEmptyParts)[0];
|
||||
|
||||
auto request = assetClient->create(hash);
|
||||
|
||||
|
|
Loading…
Reference in a new issue