fix: Disable the applet connection method when all applet hosts have is_active set to False

This commit is contained in:
Bai
2024-05-28 10:57:43 +08:00
committed by Bryan
parent 75df845024
commit 5d1829b998

View File

@@ -101,7 +101,7 @@ class AppletMethod:
from .models import Applet, AppletHost
methods = defaultdict(list)
has_applet_hosts = AppletHost.objects.all().exists()
has_applet_hosts = AppletHost.objects.filter(is_active=True).exists()
applets = Applet.objects.filter(is_active=True)
for applet in applets:
for protocol in applet.protocols: