Skip to content

Commit a34b898

Browse files
committed
Increase default concurrency to 16
1 parent ab26eae commit a34b898

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

app/src/main/java/com/launium/mcping/ui/settings/Preferences.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,11 @@ object Preferences {
4848
return if (stored > 0) {
4949
stored
5050
} else {
51-
5
51+
16
5252
}
5353
}
5454
set(value) {
55-
if (value == 5) { // set to default
55+
if (value == 16) { // set to default
5656
sharedPreferences.edit().remove(MAX_CONCURRENT_PINGS).apply()
5757
} else if (value > 0) {
5858
sharedPreferences.edit().putInt(MAX_CONCURRENT_PINGS, value).apply()

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
22
plugins {
3-
id("com.android.application") version "8.1.2" apply false
3+
id("com.android.application") version "8.1.3" apply false
44
id("org.jetbrains.kotlin.android") version "1.9.0" apply false
55
id("com.google.devtools.ksp") version "1.9.0-1.0.12" apply false
66
}

0 commit comments

Comments
 (0)