Skip to content
This repository has been archived by the owner on Aug 12, 2024. It is now read-only.

Commit

Permalink
Shamrock: #89
Browse files Browse the repository at this point in the history
  • Loading branch information
whitechi73 committed Nov 25, 2023
1 parent 2d57dc0 commit 5ea260c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xposed/src/main/java/moe/fuqiuluo/proto/Proto.kt
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ val ProtoValue.asLong: Long
get() = (this as ProtoNumber).value.toLong()

val ProtoValue.asULong: Long
get() = (this as ProtoNumber).value.toLong() and 0xFFFFFFFFL
get() = (this as ProtoNumber).value.toLong() and Long.MAX_VALUE

val ProtoValue.asMap: ProtoMap
get() = (this as ProtoMap)
Expand Down

0 comments on commit 5ea260c

Please sign in to comment.