fix(streamingRequest): missing asset name in error message

This commit is contained in:
Linden
2024-04-02 17:02:46 +11:00
parent 44b41973b8
commit 1ab6d3dd00

View File

@@ -15,5 +15,5 @@ function lib.streamingRequest(request, hasLoaded, assetType, asset, timeout, ...
return lib.waitFor(function() return lib.waitFor(function()
if hasLoaded(asset) then return asset end if hasLoaded(asset) then return asset end
end, ("failed to load %s '%s'"):format(assetType), timeout) end, ("failed to load %s '%s'"):format(assetType, asset), timeout)
end end