diff options
author | Diva Canto | 2016-06-06 09:55:25 -0700 |
---|---|---|
committer | Diva Canto | 2016-06-06 09:55:25 -0700 |
commit | 8e10963f4550fd82129a9e3c1777066f257c2361 (patch) | |
tree | 0aa41992034c3f3472a58056c4a34fba5db69e3e | |
parent | Fixed a merge issue (diff) | |
download | opensim-SC-8e10963f4550fd82129a9e3c1777066f257c2361.zip opensim-SC-8e10963f4550fd82129a9e3c1777066f257c2361.tar.gz opensim-SC-8e10963f4550fd82129a9e3c1777066f257c2361.tar.bz2 opensim-SC-8e10963f4550fd82129a9e3c1777066f257c2361.tar.xz |
Mantis #7919: fatal exception on LoadImageURLModule
-rw-r--r-- | OpenSim/Region/CoreModules/Scripting/LoadImageURL/LoadImageURLModule.cs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/OpenSim/Region/CoreModules/Scripting/LoadImageURL/LoadImageURLModule.cs b/OpenSim/Region/CoreModules/Scripting/LoadImageURL/LoadImageURLModule.cs index 04536e4..7267515 100644 --- a/OpenSim/Region/CoreModules/Scripting/LoadImageURL/LoadImageURLModule.cs +++ b/OpenSim/Region/CoreModules/Scripting/LoadImageURL/LoadImageURLModule.cs | |||
@@ -268,6 +268,10 @@ namespace OpenSim.Region.CoreModules.Scripting.LoadImageURL | |||
268 | catch (WebException) | 268 | catch (WebException) |
269 | { | 269 | { |
270 | } | 270 | } |
271 | catch (Exception e) | ||
272 | { | ||
273 | m_log.ErrorFormat("[LOADIMAGEURLMODULE]: unexpected exception {0}", e.Message); | ||
274 | } | ||
271 | finally | 275 | finally |
272 | { | 276 | { |
273 | if (stream != null) | 277 | if (stream != null) |