Remove extension from hash in AssetResourceRequest

This commit is contained in:
Ryan Huffman 2015-08-27 10:27:12 -07:00
parent 628f275013
commit c6493b1720

View file

@ -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);