mirror of
https://github.com/vitorpamplona/amethyst.git
synced 2025-04-09 20:39:24 +02:00
Only wait 5 seconds to update lists if contents are already been displayed.
This commit is contained in:
parent
c56d3af0fc
commit
c0fe13d79c
@ -125,7 +125,8 @@ class CardFeedViewModel(val dataSource: NostrDataSource<Note>): ViewModel() {
|
||||
handlerWaiting.set(true)
|
||||
val scope = CoroutineScope(Job() + Dispatchers.Default)
|
||||
scope.launch {
|
||||
delay(5000)
|
||||
if (feedContent.value is CardFeedState.Loaded)
|
||||
delay(5000)
|
||||
refresh()
|
||||
handlerWaiting.set(false)
|
||||
}
|
||||
|
@ -122,7 +122,8 @@ abstract class FeedViewModel(val dataSource: NostrDataSource<Note>): ViewModel()
|
||||
handlerWaiting.set(true)
|
||||
val scope = CoroutineScope(Job() + Dispatchers.Default)
|
||||
scope.launch {
|
||||
delay(5000)
|
||||
if (feedContent.value is FeedState.Loaded)
|
||||
delay(5000)
|
||||
refresh()
|
||||
handlerWaiting.set(false)
|
||||
}
|
||||
|
@ -87,7 +87,8 @@ open class UserFeedViewModel(val dataSource: NostrDataSource<User>): ViewModel()
|
||||
handlerWaiting.set(true)
|
||||
val scope = CoroutineScope(Job() + Dispatchers.Default)
|
||||
scope.launch {
|
||||
delay(5000)
|
||||
if (feedContent.value is UserFeedState.Loaded)
|
||||
delay(5000)
|
||||
refresh()
|
||||
handlerWaiting.set(false)
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user