mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 02:36:54 +02:00
Fix poorly indented if in AssetRequest
This commit is contained in:
parent
765a061086
commit
89fb0a917b
1 changed files with 1 additions and 1 deletions
|
@ -77,7 +77,7 @@ void AssetRequest::start() {
|
||||||
_assetRequestID = assetClient->getAsset(_hash, _byteRange.fromInclusive, _byteRange.toExclusive,
|
_assetRequestID = assetClient->getAsset(_hash, _byteRange.fromInclusive, _byteRange.toExclusive,
|
||||||
[this, that, hash](bool responseReceived, AssetServerError serverError, const QByteArray& data) {
|
[this, that, hash](bool responseReceived, AssetServerError serverError, const QByteArray& data) {
|
||||||
|
|
||||||
if (!that) {
|
if (!that) {
|
||||||
qCWarning(asset_client) << "Got reply for dead asset request " << hash << "- error code" << _error;
|
qCWarning(asset_client) << "Got reply for dead asset request " << hash << "- error code" << _error;
|
||||||
// If the request is dead, return
|
// If the request is dead, return
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in a new issue