Reduce the query param cut-off to 1000 chars
parent
47371a1216
commit
31295377a9
|
@ -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 New Issue