mirror of
https://github.com/SchildiChat/SchildiChat-android.git
synced 2025-02-17 04:20:00 +03:00
Fix warning "This expression will be resolved to Int in future releases. Please add explicit conversion call"
This commit is contained in:
parent
d0623c298d
commit
a40cee337e
1 changed files with 1 additions and 1 deletions
|
@ -39,7 +39,7 @@ sealed class InitialSyncStrategy {
|
|||
* Limit to reach to decide to split the init sync response into smaller files
|
||||
* Empiric value: 1 megabytes
|
||||
*/
|
||||
val minSizeToSplit: Long = 1024 * 1024,
|
||||
val minSizeToSplit: Long = 1_048_576, // 1024 * 1024
|
||||
/**
|
||||
* Limit per room to reach to decide to store a join room ephemeral Events into a file
|
||||
* Empiric value: 1 kilobytes
|
||||
|
|
Loading…
Add table
Reference in a new issue