1
0
mirror of https://github.com/webrecorder/pywb.git synced 2025-03-16 00:24:48 +01:00

wombat: disable always remove slash in extract_orig, as this may break urls that depend

on it (and they are different urls anyway)
This commit is contained in:
Ilya Kreymer 2015-04-20 17:46:03 -07:00
parent 5028901a17
commit d9bd47ea77

@ -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;
}