From: Michael Tremer Date: Fri, 2 Jan 2026 14:25:23 +0000 (+0000) Subject: sources: Accept the third-party option for ABP X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=950a7b86d423e2795b6969a83ed3eeb315113ac1;p=dbl.git sources: Accept the third-party option for ABP Signed-off-by: Michael Tremer --- diff --git a/src/dnsbl/sources.py b/src/dnsbl/sources.py index df1384f..8258924 100644 --- a/src/dnsbl/sources.py +++ b/src/dnsbl/sources.py @@ -443,7 +443,7 @@ class Source(sqlmodel.SQLModel, database.BackendMixin, table=True): options = [option.strip() for option in options.split(",")] # Remove some options that we know and will ignore - for option in ("all", "important"): + for option in ("all", "important", "third-party"): try: options.remove(option) except ValueError: