summaryrefslogtreecommitdiff
path: root/service
diff options
context:
space:
mode:
authorDuda Dornelles <ddornell@thoughtworks.com>2015-02-22 04:07:00 -0300
committerDuda Dornelles <ddornell@thoughtworks.com>2015-02-22 04:07:00 -0300
commit2cc2db1bbf8c5c1faf43a5df27f67ac742ff7424 (patch)
tree2843848b2150a057ce704d6b8730226e44b4f7b7 /service
parent26be3c59b174eb9f1a6f73c67489738c7517ce8c (diff)
#290 no need to remove all tags when moving to thrash
Diffstat (limited to 'service')
-rw-r--r--service/pixelated/adapter/services/mailboxes.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/service/pixelated/adapter/services/mailboxes.py b/service/pixelated/adapter/services/mailboxes.py
index 0a1c9a4b..c761255c 100644
--- a/service/pixelated/adapter/services/mailboxes.py
+++ b/service/pixelated/adapter/services/mailboxes.py
@@ -50,7 +50,6 @@ class Mailboxes():
def move_to_trash(self, mail_id):
mail = self.querier.mail(mail_id)
- mail.remove_all_tags()
mail.set_mailbox(self.trash().mailbox_name)
mail.save()
return mail