From d9bd47ea77314ebc67fa488952436e481cfaa8a9 Mon Sep 17 00:00:00 2001 From: Ilya Kreymer Date: Mon, 20 Apr 2015 17:46:03 -0700 Subject: [PATCH] wombat: disable always remove slash in extract_orig, as this may break urls that depend on it (and they are different urls anyway) --- pywb/static/wombat.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pywb/static/wombat.js b/pywb/static/wombat.js index e60c65e1..9bbd1aef 100644 --- a/pywb/static/wombat.js +++ b/pywb/static/wombat.js @@ -250,9 +250,9 @@ _WBWombat = (function() { } // remove trailing slash - if (ends_with(href, "/")) { - href = href.substring(0, href.length - 1); - } + //if (ends_with(href, "/")) { + // href = href.substring(0, href.length - 1); + //} return href; }