post-install: Fix getting keys of null values Original commit by @honey-tree https://github.com/SillyTavern/SillyTavern/pull/3334/commits/5c40876a4afb928b0b0ea916a7f02ee57234e452

7c93acedc33555077914de40696ec45a545510d2

Cohee <18619528+Cohee1207@users.noreply.github.com>

1 files changed, +1 -1Ignore whitespace
post-install.js+1 -1
@@ -73,7 +73,7 @@ const keyMigrationMap = [
7373 * @returns {string[]} Array of all keys in the object
7474 */
7575function getAllKeys(obj, prefix = '') {
7676 if (typeof obj !== 'object' || Array.isArray(obj) || obj === null) {
7777 return [];
7878 }
7979