mirror of
https://github.com/bitwarden/browser
synced 2025-12-17 08:43:33 +00:00
lowered uri trim to 1000
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user