mirror of
https://github.com/SagerNet/sing-box-for-android.git
synced 2025-04-03 20:07:38 +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()
|
||||
.filter { it.typed.type == TypedProfile.Type.Remote && it.typed.autoUpdate }
|
||||
if (remoteProfiles.isEmpty()) return Result.success()
|
||||
val httpClient = HTTPClient()
|
||||
var success = true
|
||||
for (profile in remoteProfiles) {
|
||||
try {
|
||||
val content = httpClient.getString(profile.typed.remoteURL)
|
||||
val content = HTTPClient().use { it.getString(profile.typed.remoteURL) }
|
||||
Libbox.checkConfig(content)
|
||||
File(profile.typed.path).writeText(content)
|
||||
profile.typed.lastUpdated = Date()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue