mirror of https://github.com/hykilpikonna/AquaDX
[F] Fix bound must be greater than origin
parent
a449bac130
commit
ce53acdacf
|
@ -143,7 +143,7 @@ suspend fun <T : IUserData> migrateCard(repo: GenericUserDataRepo<T>, cardRepo:
|
||||||
it.card = async { cardRepo.save(Card().apply {
|
it.card = async { cardRepo.save(Card().apply {
|
||||||
luid = "Migrated data of ghost card ${ghost.id} for user ${card.aquaUser!!.auId}"
|
luid = "Migrated data of ghost card ${ghost.id} for user ${card.aquaUser!!.auId}"
|
||||||
// Randomize an extId outside the normal range
|
// 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()
|
registerTime = LocalDateTime.now()
|
||||||
accessTime = registerTime
|
accessTime = registerTime
|
||||||
}) }
|
}) }
|
||||||
|
|
Loading…
Reference in New Issue