mirror of
https://github.com/digitalocean/nginxconfig.io
synced 2024-11-10 04:24:12 +00:00
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:
parent
a2e64e6317
commit
fe5f2b234d
1 changed files with 2 additions and 2 deletions
|
@ -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}`;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue