Clear message error on delete operation

This commit is contained in:
M66B 2021-06-23 22:10:06 +02:00
parent ba92a9c3f8
commit 6a94dbd214
1 changed files with 4 additions and 0 deletions

View File

@ -229,7 +229,11 @@ public class AdapterOperation extends RecyclerView.Adapter<AdapterOperation.View
return null;
db.operation().deleteOperation(operation.id);
db.folder().setFolderError(operation.folder, null);
if (operation.message != null)
db.message().setMessageError(operation.message, null);
return null;
}