Fix slice size

Related feedback:
ec4480e122 (r110292487)
This commit is contained in:
Raymond Hill 2023-04-24 09:18:26 -04:00
parent e46705db00
commit 34d2a4ea2a
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2
1 changed files with 1 additions and 1 deletions

View File

@ -1464,7 +1464,7 @@ const getSupportData = async function() {
addedListset = undefined;
} else if ( Object.keys(addedListset).length > 15 ) {
const added = Object.keys(addedListset);
const truncated = added.slice(20);
const truncated = added.slice(15);
for ( const key of truncated ) {
delete addedListset[key];
}