From 1ac6261f0f81a07213c91c967c444ed451324990 Mon Sep 17 00:00:00 2001 From: Paul Hebble Date: Wed, 26 Jun 2019 10:48:25 -0500 Subject: [PATCH] Re-throw without losing stack --- Netkan/Processors/Inflator.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Netkan/Processors/Inflator.cs b/Netkan/Processors/Inflator.cs index 5e622899f5..ccc81c66ca 100644 --- a/Netkan/Processors/Inflator.cs +++ b/Netkan/Processors/Inflator.cs @@ -55,7 +55,7 @@ internal IEnumerable Inflate(string filename, Metadata netkan, int? re { // Purge anything we download for a failed indexing attempt from the cache to allow re-downloads PurgeDownloads(http, cache); - throw e; + throw; } }