mirror of
https://github.com/hykilpikonna/AquaDX.git
synced 2026-04-21 00:47:25 -05:00
[F] Fix bound must be greater than origin
This commit is contained in:
parent
a449bac130
commit
ce53acdacf
|
|
@ -143,7 +143,7 @@ suspend fun <T : IUserData> migrateCard(repo: GenericUserDataRepo<T>, cardRepo:
|
|||
it.card = async { cardRepo.save(Card().apply {
|
||||
luid = "Migrated data of ghost card ${ghost.id} for user ${card.aquaUser!!.auId}"
|
||||
// Randomize an extId outside the normal range
|
||||
extId = Random.nextLong(0x7FFFFFFFL shl 32, 0x7FFFFFFEL shl 32)
|
||||
extId = Random.nextLong(0x7FFFFFF7L shl 32, 0x7FFFFFFFL shl 32)
|
||||
registerTime = LocalDateTime.now()
|
||||
accessTime = registerTime
|
||||
}) }
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user