fix: resolve issue with file deletion during subscription removal

This commit is contained in:
Tunglies
2025-10-14 17:55:48 +08:00
parent f541464ff4
commit bb2059c76f
7 changed files with 52 additions and 88 deletions

View File

@@ -25,6 +25,7 @@ pub enum Type {
Timer,
Frontend,
Backup,
File,
Lightweight,
Network,
ProxyMode,
@@ -47,6 +48,7 @@ impl fmt::Display for Type {
Type::Timer => write!(f, "[Timer]"),
Type::Frontend => write!(f, "[Frontend]"),
Type::Backup => write!(f, "[Backup]"),
Type::File => write!(f, "[File]"),
Type::Lightweight => write!(f, "[Lightweight]"),
Type::Network => write!(f, "[Network]"),
Type::ProxyMode => write!(f, "[ProxMode]"),