fix: 🚑 aimedb hotfix

This commit is contained in:
Raymond
2026-04-13 17:33:57 -04:00
parent 1bc89c46f1
commit dad66401cc

View File

@@ -208,7 +208,7 @@ class AquaUserServices(
fun validKeychip(keychipId: Str): Bool {
if (!allNetProps.checkKeychip) return true
if (keychipId.isBlank()) return false
if (userKeychipRepo.existsByKeychipId(keychipId)) return true
if (userKeychipRepo.findByKeychipIdStartingWith(keychipId).truthy) return true
return false
}