#2689 Fixing oversight on method call

This commit is contained in:
Archer Bowen
2024-08-19 13:10:35 +01:00
parent f595f44ce9
commit 2413a2f6a8

View File

@@ -463,7 +463,7 @@ class AbstractC2(Application, identifier="AbstractC2"):
:return: A tuple containing a boolean True/False and a corresponding Request Response
:rtype: tuple[bool, RequestResponse]
"""
if not self._can_perform_network_action:
if not self._can_perform_network_action():
self.sys_log.warning(f"{self.name}: Unable to make leverage networking resources. Rejecting Command.")
return (
False,