mirror of
https://github.com/SagerNet/sing-box-for-android.git
synced 2025-04-05 04:47:39 +03:00
Update HTTPClient usage
This commit is contained in:
parent
c960401961
commit
7930d42994
1 changed files with 1 additions and 2 deletions
|
@ -65,11 +65,10 @@ class UpdateProfileWork {
|
||||||
val remoteProfiles = ProfileManager.list()
|
val remoteProfiles = ProfileManager.list()
|
||||||
.filter { it.typed.type == TypedProfile.Type.Remote && it.typed.autoUpdate }
|
.filter { it.typed.type == TypedProfile.Type.Remote && it.typed.autoUpdate }
|
||||||
if (remoteProfiles.isEmpty()) return Result.success()
|
if (remoteProfiles.isEmpty()) return Result.success()
|
||||||
val httpClient = HTTPClient()
|
|
||||||
var success = true
|
var success = true
|
||||||
for (profile in remoteProfiles) {
|
for (profile in remoteProfiles) {
|
||||||
try {
|
try {
|
||||||
val content = httpClient.getString(profile.typed.remoteURL)
|
val content = HTTPClient().use { it.getString(profile.typed.remoteURL) }
|
||||||
Libbox.checkConfig(content)
|
Libbox.checkConfig(content)
|
||||||
File(profile.typed.path).writeText(content)
|
File(profile.typed.path).writeText(content)
|
||||||
profile.typed.lastUpdated = Date()
|
profile.typed.lastUpdated = Date()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue