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

wb_frame: fix extra slash typo in replaced frame url

This commit is contained in:
Ilya Kreymer 2015-03-05 17:04:44 -08:00
parent f2d7bd074a
commit 1fb631870b

View File

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