From 86c37bfa37aa805a9fc231006fbcb39bec907cb1 Mon Sep 17 00:00:00 2001 From: ansuz Date: Thu, 13 Apr 2017 11:11:45 +0200 Subject: [PATCH] fix find+replace error --- www/common/hash.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/www/common/hash.js b/www/common/hash.js index fa1407315..0c535ab18 100644 --- a/www/common/hash.js +++ b/www/common/hash.js @@ -1,5 +1,5 @@ define([ - '/Hash/Hash-util.js', + '/common/common-util.js', '/bower_components/chainpad-crypto/crypto.js', ], function (Util, Crypto) { var Hash = {}; @@ -227,7 +227,7 @@ define([ var channel = parsed.channel; if (!channel) { return; } - var hex = Hash.base64ToHex(channel); + var hex = base64ToHex(channel); return hex; };