1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-06-26 10:35:48 +02:00

lowered uri trim to 1000

This commit is contained in:
Kyle Spearrin 2016-10-14 23:17:20 -04:00
parent 0ae11cc40c
commit 7b88d30aa8

View File

@ -31,8 +31,8 @@
};
function trimUri(uri) {
if (uri.length > 2000) {
return uri.substring(0, 2000);
if (uri.length > 1000) {
return uri.substring(0, 1000);
}
return uri;