mirror of
https://github.com/SagerNet/sing-box-for-android.git
synced 2025-04-03 20:07:38 +03:00
Fix move profile
This commit is contained in:
parent
819364a877
commit
52f0f46436
1 changed files with 4 additions and 0 deletions
|
@ -90,8 +90,10 @@ class ConfigurationFragment : Fragment() {
|
|||
RecyclerView.Adapter<Holder>() {
|
||||
|
||||
internal var items: MutableList<Profile> = mutableListOf()
|
||||
private var isMoving = false
|
||||
|
||||
internal fun reload() {
|
||||
if (isMoving) return
|
||||
scope.launch(Dispatchers.IO) {
|
||||
items = ProfileManager.list().toMutableList()
|
||||
withContext(Dispatchers.Main) {
|
||||
|
@ -124,8 +126,10 @@ class ConfigurationFragment : Fragment() {
|
|||
first.userOrder = previousOrder
|
||||
updated.add(first)
|
||||
notifyItemMoved(from, to)
|
||||
isMoving = true
|
||||
GlobalScope.launch(Dispatchers.IO) {
|
||||
ProfileManager.update(updated)
|
||||
isMoving = false
|
||||
}
|
||||
return true
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue