From c0381832954bb833b49e1b3477a4de58481355bc Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Tue, 3 Feb 2026 20:39:21 +0100 Subject: [PATCH] Revert awaiting new code --- qbittorrent/rootfs/usr/local/sbin/iptables-restore | 2 -- 1 file changed, 2 deletions(-) diff --git a/qbittorrent/rootfs/usr/local/sbin/iptables-restore b/qbittorrent/rootfs/usr/local/sbin/iptables-restore index 2219b563c..bbe11f8f0 100644 --- a/qbittorrent/rootfs/usr/local/sbin/iptables-restore +++ b/qbittorrent/rootfs/usr/local/sbin/iptables-restore @@ -7,10 +7,8 @@ if [[ ! -x "${REAL_IPTABLES_RESTORE}" ]]; then fi cleanup() { - local exit_code=$? [[ -n "${RULES_FILE:-}" && -f "${RULES_FILE}" ]] && rm -f "${RULES_FILE}" [[ -n "${SANITIZED_FILE:-}" && -f "${SANITIZED_FILE}" ]] && rm -f "${SANITIZED_FILE}" - return $exit_code } trap cleanup EXIT