From fa8f3c3dcb67d93ee0a9667baa517ec6466a400a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kat=20March=C3=A1n?= Date: Sat, 4 Mar 2017 17:55:22 -0800 Subject: [PATCH] fix(content): use the rest of the string, not the whole string --- lib/content/path.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/content/path.js b/lib/content/path.js index eb45eb6..2f3ee6a 100644 --- a/lib/content/path.js +++ b/lib/content/path.js @@ -16,6 +16,6 @@ function contentPath (cache, address, hashAlgorithm) { `content-v${contentVer}`, hashAlgorithm, address.slice(0, 2), - address + address.slice(2) ) }