From 1fb631870b01e041b74f056eef68359d1ccccfaa Mon Sep 17 00:00:00 2001 From: Ilya Kreymer Date: Thu, 5 Mar 2015 17:04:44 -0800 Subject: [PATCH] wb_frame: fix extra slash typo in replaced frame url --- pywb/static/wb_frame.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pywb/static/wb_frame.js b/pywb/static/wb_frame.js index 79642db1..640b3e88 100644 --- a/pywb/static/wb_frame.js +++ b/pywb/static/wb_frame.js @@ -38,7 +38,7 @@ function make_inner_url(url, ts) if (ts) { return wbinfo.prefix + ts + "/" + url; } else { - return wbinfo.prefix + "/" + url; + return wbinfo.prefix + url; } }