Closed
Description
Line 114 of keychain.ts uses the functions concat
and filter
from the Array
class. These functions don't modify the source arrays but return a new one. Since the return (of the filter
function) is not stored back on the keychainData
variable, this variable will remain an empty list. This causes the command ios keychain dump
to always return an empty table.