mirror of
https://github.com/hykilpikonna/AquaDX.git
synced 2026-05-27 10:42:44 -05:00
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:
parent
da06adc1fd
commit
4c76ab27b3
|
|
@ -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`;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@ class UserKeychip(
|
|||
var user: AquaNetUser,
|
||||
|
||||
@Column(unique = true, nullable = false, length = 32)
|
||||
val keychipId: String = "",
|
||||
val keychipId: String,
|
||||
)
|
||||
|
||||
@Repository
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user