mirror of
https://github.com/bitwarden/browser.git
synced 2025-03-10 13:09:37 +01:00
lowered uri trim to 1000
This commit is contained in:
parent
0ae11cc40c
commit
7b88d30aa8
@ -31,8 +31,8 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
function trimUri(uri) {
|
function trimUri(uri) {
|
||||||
if (uri.length > 2000) {
|
if (uri.length > 1000) {
|
||||||
return uri.substring(0, 2000);
|
return uri.substring(0, 1000);
|
||||||
}
|
}
|
||||||
|
|
||||||
return uri;
|
return uri;
|
||||||
|
Loading…
Reference in New Issue
Block a user