diff --git a/app/src/main/java/io/nekohasekai/sfa/ktx/Shares.kt b/app/src/main/java/io/nekohasekai/sfa/ktx/Shares.kt index d1bf971..2e9e6e2 100644 --- a/app/src/main/java/io/nekohasekai/sfa/ktx/Shares.kt +++ b/app/src/main/java/io/nekohasekai/sfa/ktx/Shares.kt @@ -26,6 +26,7 @@ suspend fun Context.shareProfile(profile: Profile) { content.config = File(profile.typed.path).readText() content.remotePath = profile.typed.remoteURL content.autoUpdate = profile.typed.autoUpdate + content.autoUpdateInterval = profile.typed.autoUpdateInterval content.lastUpdated = profile.typed.lastUpdated.time val configDirectory = File(cacheDir, "share").also { it.mkdirs() } diff --git a/app/src/main/java/io/nekohasekai/sfa/ui/MainActivity.kt b/app/src/main/java/io/nekohasekai/sfa/ui/MainActivity.kt index 4d284bb..3b01c50 100644 --- a/app/src/main/java/io/nekohasekai/sfa/ui/MainActivity.kt +++ b/app/src/main/java/io/nekohasekai/sfa/ui/MainActivity.kt @@ -166,6 +166,8 @@ class MainActivity : AbstractActivity(), ServiceConnection.Callback, DistributeL Libbox.ProfileTypeRemote -> { typedProfile.type = TypedProfile.Type.Remote typedProfile.remoteURL = content.remotePath + typedProfile.autoUpdate = content.autoUpdate + typedProfile.autoUpdateInterval = content.autoUpdateInterval typedProfile.lastUpdated = Date(content.lastUpdated) } }