diff options
author | Melanie | 2010-12-14 23:58:45 +0000 |
---|---|---|
committer | Melanie | 2010-12-14 23:58:45 +0000 |
commit | 354f568508c9f68e5e1409a778a96e8bf2e71507 (patch) | |
tree | 727ac0d2b54ec806adfa8c84e933e2606ee69c1e /OpenSim/Services/Connectors | |
parent | Workaround to allow llHTTPRequest to POST data to Lighthttpd which doesn't su... (diff) | |
parent | Merge branch 'master' of ssh://opensimulator.org/var/git/opensim (diff) | |
download | opensim-SC-354f568508c9f68e5e1409a778a96e8bf2e71507.zip opensim-SC-354f568508c9f68e5e1409a778a96e8bf2e71507.tar.gz opensim-SC-354f568508c9f68e5e1409a778a96e8bf2e71507.tar.bz2 opensim-SC-354f568508c9f68e5e1409a778a96e8bf2e71507.tar.xz |
Merge branch 'master' into careminster-presence-refactor
Diffstat (limited to 'OpenSim/Services/Connectors')
-rw-r--r-- | OpenSim/Services/Connectors/Hypergrid/GatekeeperServiceConnector.cs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/OpenSim/Services/Connectors/Hypergrid/GatekeeperServiceConnector.cs b/OpenSim/Services/Connectors/Hypergrid/GatekeeperServiceConnector.cs index 1ac8478..a1d9167 100644 --- a/OpenSim/Services/Connectors/Hypergrid/GatekeeperServiceConnector.cs +++ b/OpenSim/Services/Connectors/Hypergrid/GatekeeperServiceConnector.cs | |||
@@ -147,7 +147,10 @@ namespace OpenSim.Services.Connectors.Hypergrid | |||
147 | public UUID GetMapImage(UUID regionID, string imageURL, string storagePath) | 147 | public UUID GetMapImage(UUID regionID, string imageURL, string storagePath) |
148 | { | 148 | { |
149 | if (m_AssetService == null) | 149 | if (m_AssetService == null) |
150 | { | ||
151 | m_log.DebugFormat("[GATEKEEPER SERVICE CONNECTOR]: No AssetService defined. Map tile not retrieved."); | ||
150 | return m_HGMapImage; | 152 | return m_HGMapImage; |
153 | } | ||
151 | 154 | ||
152 | UUID mapTile = m_HGMapImage; | 155 | UUID mapTile = m_HGMapImage; |
153 | string filename = string.Empty; | 156 | string filename = string.Empty; |
@@ -167,8 +170,6 @@ namespace OpenSim.Services.Connectors.Hypergrid | |||
167 | // !!! for now | 170 | // !!! for now |
168 | //info.RegionSettings.TerrainImageID = ass.FullID; | 171 | //info.RegionSettings.TerrainImageID = ass.FullID; |
169 | 172 | ||
170 | ass.Temporary = true; | ||
171 | ass.Local = true; | ||
172 | ass.Data = imageData; | 173 | ass.Data = imageData; |
173 | 174 | ||
174 | m_AssetService.Store(ass); | 175 | m_AssetService.Store(ass); |