Fix warning "This expression will be resolved to Int in future releases. Please add explicit conversion call"

This commit is contained in:
Benoit Marty 2021-09-23 15:52:01 +02:00
parent d0623c298d
commit a40cee337e

View file

@ -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