From e8e3bf2a071bbbf76388cecb8c41f06935bc35bf Mon Sep 17 00:00:00 2001 From: Tobias <96661824+CrazyWolf13@users.noreply.github.com> Date: Fri, 21 Nov 2025 11:50:28 +0100 Subject: [PATCH] Delete user's config directory on uninstall Remove the user's configuration directory during uninstallation. --- tools/addon/qbittorrent-exporter.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/addon/qbittorrent-exporter.sh b/tools/addon/qbittorrent-exporter.sh index f2698826e..2f7313670 100644 --- a/tools/addon/qbittorrent-exporter.sh +++ b/tools/addon/qbittorrent-exporter.sh @@ -50,7 +50,7 @@ if [[ -f "$INSTALL_PATH" ]]; then rc-update del qbittorrent-exporter &>/dev/null rm -f "$SERVICE_PATH" fi - rm -f "$INSTALL_PATH" "$CONFIG_PATH" + rm -f "$INSTALL_PATH" "$CONFIG_PATH" ~/.qbittorrent-exporter msg_ok "${APP} has been uninstalled." exit 0 fi