Skip to content

Commit 1c09c10

Browse files
tevincentKevinBoulongne
authored andcommitted
Add for spam
1 parent d13f727 commit 1c09c10

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

app/src/main/java/com/infomaniak/mail/ui/MainViewModel.kt

+5-3
Original file line numberDiff line numberDiff line change
@@ -810,11 +810,9 @@ class MainViewModel @Inject constructor(
810810
}
811811
val uids = messages.getUids()
812812

813-
/*threadController.updateFavoriteStatus(threadsUids, !isFavorite)
813+
threadController.updateFavoriteStatus(threadsUids, !isFavorite)
814814
messageController.updateIsFavoriteStatus(uids, !isFavorite)
815815

816-
val isSuccess = if (isFavorite) {
817-
ApiRepository.removeFromFavorites(mailbox.uuid, uids).isSuccess()*/
818816
val apiResponses = if (isFavorite) {
819817
ApiRepository.removeFromFavorites(mailbox.uuid, uids)
820818
} else {
@@ -874,6 +872,8 @@ class MainViewModel @Inject constructor(
874872

875873
val messages = getMessagesToSpamOrHam(threads, message)
876874

875+
threadController.updateIsMovedOutLocally(threadsUids, hasBeenMovedOut = true)
876+
877877
val apiResponses = ApiRepository.moveMessages(mailbox.uuid, messages.getUids(), destinationFolder.id)
878878

879879
if (apiResponses.atLeastOneSucceeded()) {
@@ -883,6 +883,8 @@ class MainViewModel @Inject constructor(
883883
destinationFolderId = destinationFolder.id,
884884
callbacks = RefreshCallbacks(::onDownloadStart, ::onDownloadStop),
885885
)
886+
} else {
887+
threadController.updateIsMovedOutLocally(threadsUids, hasBeenMovedOut = false)
886888
}
887889

888890
if (displaySnackbar) showMoveSnackbar(threads, message, messages, apiResponses, destinationFolder)

0 commit comments

Comments
 (0)