fix: remove default empty string from UserKeychip.keychipId, document 1337 suffix

Agent-Logs-Url: https://github.com/MewoLab/AquaDX/sessions/543e2abd-831e-4d22-a4d3-4efb25251439

Co-authored-by: hykilpikonna <22280294+hykilpikonna@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot] 2026-04-07 17:48:40 +00:00 committed by GitHub
parent da06adc1fd
commit 4c76ab27b3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 1 deletions

View File

@ -20,6 +20,8 @@
let isLoading = true;
let isAdding = false;
// Format the keychip for use in segatools.ini.
// The '1337' suffix is appended to conform to the segatools keychip ID format requirement.
function formatKeychipDisplay(k: string): string {
return `${k.slice(0, 4)}-${k.slice(4)}1337`;
}

View File

@ -17,7 +17,7 @@ class UserKeychip(
var user: AquaNetUser,
@Column(unique = true, nullable = false, length = 32)
val keychipId: String = "",
val keychipId: String,
)
@Repository