1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-10-04 05:08:06 +02:00

only need to trim !

This commit is contained in:
Kyle Spearrin 2017-11-15 17:32:10 -05:00
parent 1cdf7924fc
commit 7e383c68f6

View File

@ -41,8 +41,8 @@
if (paramIndex > -1) { if (paramIndex > -1) {
pagePath = pagePath.substring(0, paramIndex); pagePath = pagePath.substring(0, paramIndex);
} }
if (pagePath.indexOf('/!/') === 0) { if (pagePath.indexOf('!/') === 0) {
pagePath = pagePath.substring(2); pagePath = pagePath.substring(1);
} }
return encodeURIComponent(pagePath); return encodeURIComponent(pagePath);
} }