You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
Line 114 of keychain.ts uses the functions
concat
andfilter
from theArray
class. These functions don't modify the source arrays but return a new one. Since the return (of thefilter
function) is not stored back on thekeychainData
variable, this variable will remain an empty list. This causes the commandios keychain dump
to always return an empty table.The text was updated successfully, but these errors were encountered: