Increase delay time in moveBookmark. Need to find a better alternative to delay.

This commit is contained in:
KotlinGeekDev
2025-11-28 15:21:58 +01:00
parent 19a499f6cc
commit bf6109d18b
@@ -111,7 +111,7 @@ class BookmarkGroupViewModel(
isCurrentlyPrivate: Boolean,
) {
removeBookmarkFromGroup(groupIdentifier, bookmark, isCurrentlyPrivate)
delay(1000L)
delay(1500L)
addBookmarkToGroup(groupIdentifier, bookmark, !isCurrentlyPrivate)
}