Skip to content

Commit

Permalink
chore: change some default value
Browse files Browse the repository at this point in the history
  • Loading branch information
xchacha20-poly1305 authored and arm64v8a committed Oct 25, 2023
1 parent 8d7b054 commit 4c4a3b8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ object DataStore : OnPreferenceDataStoreChangeListener {
var speedInterval by configurationStore.stringToInt(Key.SPEED_INTERVAL)
var showGroupInNotification by configurationStore.boolean("showGroupInNotification")

var remoteDns by configurationStore.string(Key.REMOTE_DNS) { "https://8.8.8.8/dns-query" }
var remoteDns by configurationStore.string(Key.REMOTE_DNS) { "https://dns.google/dns-query" }
var directDns by configurationStore.string(Key.DIRECT_DNS) { "local" }
var enableDnsRouting by configurationStore.boolean(Key.ENABLE_DNS_ROUTING) { true }
var enableFakeDns by configurationStore.boolean(Key.ENABLE_FAKEDNS)
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/xml/global_preferences.xml
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@

<PreferenceCategory app:title="@string/cag_dns">
<EditTextPreference
app:defaultValue="https://8.8.8.8/dns-query"
app:defaultValue="https://dns.google/dns-query"
app:icon="@drawable/ic_action_dns"
app:key="remoteDns"
app:title="@string/remote_dns"
Expand Down

0 comments on commit 4c4a3b8

Please sign in to comment.