From a48bf70d85bf2fedca6183cae89d31beae1632c5 Mon Sep 17 00:00:00 2001 From: Omar Roth Date: Sat, 5 May 2018 20:49:46 -0500 Subject: [PATCH] Update signature --- src/helpers.cr | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/helpers.cr b/src/helpers.cr index 315ffa59..7f3b55f1 100644 --- a/src/helpers.cr +++ b/src/helpers.cr @@ -295,11 +295,12 @@ end def decrypt_signature(a) a = a.split("") - a.reverse! - a = splice(a, 17) - a = splice(a, 14) a.delete_at(0..1) a.reverse! + a.delete_at(0..1) + a.reverse! + a.delete_at(0..2) + a = splice(a, 60) return a.join("") end