lowered uri trim to 1000

This commit is contained in:
Kyle Spearrin 2016-10-14 23:17:20 -04:00
parent 0ae11cc40c
commit 7b88d30aa8
1 changed files with 2 additions and 2 deletions

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;