From e142063201d7d4865341181b6d21832a31a52f23 Mon Sep 17 00:00:00 2001 From: Peter Taoussanis Date: Mon, 10 Nov 2014 11:17:28 +0700 Subject: [PATCH] [#54] Fix bad v1 data thaw call (@jafingerhut) --- src/taoensso/nippy.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/taoensso/nippy.clj b/src/taoensso/nippy.clj index f2fd290..707224d 100644 --- a/src/taoensso/nippy.clj +++ b/src/taoensso/nippy.clj @@ -611,7 +611,7 @@ ;; unlikely that this is a fluke and data is actually headerless): (try (thaw-data data-ba compressor-id encryptor-id) (catch Exception e - (try (thaw-nippy-v1-data) + (try (thaw-nippy-v1-data data-ba) (catch Exception _ (if unrecognized-meta? (ex "Unrecognized (but apparently well-formed) header. Data frozen with newer Nippy version?"