Skip to content

Commit

Permalink
feat(MyKSuite-15): Convert bytes to kb (#288)
Browse files Browse the repository at this point in the history
  • Loading branch information
FabianDevel authored Feb 19, 2025
2 parents ad086a9 + 744f431 commit cd927f2
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,7 @@ data class KSuiteMail(
@SerialName("mailbox_id")
@ColumnInfo("mailbox_id")
val mailboxId: Int,
)
) {
// TODO: To remove the day the back will finally return us the size in Bytes instead of kiloBytes
inline val usedSizeInBytes get() = usedSize * 1_024
}

0 comments on commit cd927f2

Please sign in to comment.