vc: return early if vc_url is not set

This commit is contained in:
icxes 2026-02-26 01:33:00 +02:00
parent c1d10ee6ea
commit 0fd6fe02f3
No known key found for this signature in database

View file

@ -1798,6 +1798,9 @@ class SvcHub(object):
return os.path.join(self.E.cfg, "vuln_advisory.json")
def check_ver(self) -> None:
if not self.args.vc_url:
return
ver_cpp = self.parse_version(S_VERSION)
while not self.stopping: