Skip to content

Commit

Permalink
fix: Fix not disappearing Threads when moving them to another Folder
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinBoulongne committed Mar 5, 2025
1 parent d0b2b5e commit d15d066
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,7 @@ class RefreshController @Inject constructor(

val message = MessageController.getMessage(uid = shortUid.toLongUid(folderId), realm = this) ?: return@forEach

message.threads.forEach { thread ->
message.threads.asReversed().forEach { thread ->
scope.ensureActive()

val isSuccess = thread.messages.remove(message)
Expand Down

0 comments on commit d15d066

Please sign in to comment.