Change pref key for ProxyType

This commit is contained in:
Koitharu
2024-09-06 07:45:27 +03:00
parent e2993d47b6
commit 73cea59691
3 changed files with 4 additions and 4 deletions

View File

@@ -16,8 +16,8 @@ android {
applicationId 'org.koitharu.kotatsu'
minSdk = 21
targetSdk = 35
versionCode = 667
versionName = '7.5.1'
versionCode = 668
versionName = '7.5.2'
generatedDensities = []
testInstrumentationRunner 'org.koitharu.kotatsu.HiltTestRunner'
ksp {

View File

@@ -669,7 +669,7 @@ class AppSettings @Inject constructor(@ApplicationContext context: Context) {
const val KEY_READER_AUTOSCROLL_SPEED = "as_speed"
const val KEY_MIRROR_SWITCHING = "mirror_switching"
const val KEY_PROXY = "proxy"
const val KEY_PROXY_TYPE = "proxy_type"
const val KEY_PROXY_TYPE = "proxy_type_2"
const val KEY_PROXY_ADDRESS = "proxy_address"
const val KEY_PROXY_PORT = "proxy_port"
const val KEY_PROXY_AUTH = "proxy_auth"

View File

@@ -7,7 +7,7 @@
android:defaultValue="DIRECT"
android:entries="@array/proxy_types"
android:entryValues="@array/values_proxy_types"
android:key="proxy_type"
android:key="proxy_type_2"
android:title="@string/type"
app:useSimpleSummaryProvider="true" />