From 18c90acda54cb46815a081ecfc36ea8f2b9e93fd Mon Sep 17 00:00:00 2001
From: Ariver <shanghai3168@gmail.com>
Date: Mon, 29 Jun 2026 00:12:04 +0800
Subject: [PATCH] Fix custom hotkey settings UI for 8.2.1
---
src/Apptag/SmartCategorization/SmartStartService.swift | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/src/Apptag/SmartCategorization/SmartStartService.swift b/src/Apptag/SmartCategorization/SmartStartService.swift
index d377f99..b919ac4 100644
--- a/src/Apptag/SmartCategorization/SmartStartService.swift
+++ b/src/Apptag/SmartCategorization/SmartStartService.swift
@@ -528,7 +528,7 @@
let entries = base.entries.compactMap { entry -> SmartStartCatalogEntry? in
let tagIDs = entry.defaultTag
.compactMap { SmartCategoryID(rawValue: $0) }
- .filter { $0 != .other }
+ .compactMap(\.smartStartDefaultCategoryID)
guard !tagIDs.isEmpty else { return nil }
return SmartStartCatalogEntry(
--
Gitblit v1.9.3