Skip to content

Commit 9381db4

Browse files
committed
fixup! tests
1 parent 2a2cb04 commit 9381db4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/adapter/templates/getStringyProps.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export const getStringyProps = remoteFunction(function (this: unknown, maxLength
1515
}
1616

1717
for (const [key, value] of Object.entries(this)) {
18-
if (typeof value === 'object' && value && !String(this.toString).includes('[native code]')) {
18+
if (typeof value === 'object' && value && !String(value.toString).includes('[native code]')) {
1919
out[key] = String(value).slice(0, maxLength);
2020
}
2121
}

0 commit comments

Comments
 (0)