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
When the self.targets table is populated, the code uses hostname or ip in case the user did not provide a hostname. However, when the same table is accessed for a "remove" event, the code simply refers to target_found.hostname, which results in an attempt to access a nil key.
Adding: or target_found.ip to that key should suffice.
The text was updated successfully, but these errors were encountered:
When the
self.targets
table is populated, the code useshostname or ip
in case the user did not provide a hostname. However, when the same table is accessed for a "remove" event, the code simply refers totarget_found.hostname
, which results in an attempt to access anil
key.Adding:
or target_found.ip
to that key should suffice.The text was updated successfully, but these errors were encountered: