Update HTTPClient usage

This commit is contained in:
世界 2023-09-26 18:03:04 +08:00
parent c960401961
commit 7930d42994
No known key found for this signature in database
GPG key ID: CD109927C34A63C4

View file

@ -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()