From cf193f99cfe834fb11d2ff380582e52163fad6bc Mon Sep 17 00:00:00 2001 From: UbitUmarov Date: Mon, 23 Nov 2020 09:02:23 +0000 Subject: [PATCH] fix lm fetch on HG --- OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs index 6d4f7d11f2..317ce1e74c 100755 --- a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs @@ -10583,7 +10583,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP { string assetServer = aCircuit.ServiceURLs["AssetServerURI"].ToString(); if (!string.IsNullOrEmpty(assetServer)) - return ((Scene)Scene).AssetService.Get(assetServer + "/" + id); + return ((Scene)Scene).AssetService.Get(id, assetServer, false); } return null;