Reduce the query param cut-off to 1000 chars (#259)

* Reduce the query param cut-off to 1000 chars

* Update copyright
This commit is contained in:
Matt (IPv4) Cowley 2021-05-13 15:27:17 +01:00 committed by GitHub
parent a2e64e6317
commit fe5f2b234d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,5 +1,5 @@
/*
Copyright 2020 DigitalOcean
Copyright 2021 DigitalOcean
This code is licensed under the MIT License.
You may obtain a copy of the License at
@ -30,5 +30,5 @@ import exportData from './export_data';
export default (domains, global) => {
const data = exportData(domains, global);
const query = qs.stringify(data, { allowDots: true });
return `${query.length > 4000 ? '#' : ''}${query.length ? '?' : ''}${query}`;
return `${query.length > 1000 ? '#' : ''}${query.length ? '?' : ''}${query}`;
};