mirror of
https://github.com/SagerNet/sing-box-for-android.git
synced 2025-04-05 12:57:38 +03:00
Fix import profile
This commit is contained in:
parent
5e98d2cbe1
commit
c960401961
2 changed files with 3 additions and 0 deletions
|
@ -26,6 +26,7 @@ suspend fun Context.shareProfile(profile: Profile) {
|
||||||
content.config = File(profile.typed.path).readText()
|
content.config = File(profile.typed.path).readText()
|
||||||
content.remotePath = profile.typed.remoteURL
|
content.remotePath = profile.typed.remoteURL
|
||||||
content.autoUpdate = profile.typed.autoUpdate
|
content.autoUpdate = profile.typed.autoUpdate
|
||||||
|
content.autoUpdateInterval = profile.typed.autoUpdateInterval
|
||||||
content.lastUpdated = profile.typed.lastUpdated.time
|
content.lastUpdated = profile.typed.lastUpdated.time
|
||||||
|
|
||||||
val configDirectory = File(cacheDir, "share").also { it.mkdirs() }
|
val configDirectory = File(cacheDir, "share").also { it.mkdirs() }
|
||||||
|
|
|
@ -166,6 +166,8 @@ class MainActivity : AbstractActivity(), ServiceConnection.Callback, DistributeL
|
||||||
Libbox.ProfileTypeRemote -> {
|
Libbox.ProfileTypeRemote -> {
|
||||||
typedProfile.type = TypedProfile.Type.Remote
|
typedProfile.type = TypedProfile.Type.Remote
|
||||||
typedProfile.remoteURL = content.remotePath
|
typedProfile.remoteURL = content.remotePath
|
||||||
|
typedProfile.autoUpdate = content.autoUpdate
|
||||||
|
typedProfile.autoUpdateInterval = content.autoUpdateInterval
|
||||||
typedProfile.lastUpdated = Date(content.lastUpdated)
|
typedProfile.lastUpdated = Date(content.lastUpdated)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue