Index: Core/Components/src/Core.Components.BruTile.IO/AsyncTileFetcher.cs =================================================================== diff -u -r4f87cc4af28d688129fd0fb70feabf04dd7b0e59 -rb85de3e2d23514fdfeecf6035b996d373c60ba54 --- Core/Components/src/Core.Components.BruTile.IO/AsyncTileFetcher.cs (.../AsyncTileFetcher.cs) (revision 4f87cc4af28d688129fd0fb70feabf04dd7b0e59) +++ Core/Components/src/Core.Components.BruTile.IO/AsyncTileFetcher.cs (.../AsyncTileFetcher.cs) (revision b85de3e2d23514fdfeecf6035b996d373c60ba54) @@ -253,7 +253,11 @@ openTileRequests.TryAdd(tileInfo.Index, 1); result = provider.GetTile(tileInfo); } - catch {} + catch + { + // Nothing has to be done with the exception. + // Result should stay null + } //Try at least once again if (result == null) @@ -262,7 +266,11 @@ { result = provider.GetTile(tileInfo); } - catch {} + catch + { + // Nothing has to be done with the exception. + // Result should stay null + } } return result; }