aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/web/controllers/tag.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/web/controllers/tag.py b/src/web/controllers/tag.py
index 203e9a7e..35fd5613 100644
--- a/src/web/controllers/tag.py
+++ b/src/web/controllers/tag.py
@@ -16,7 +16,6 @@ class BookmarkTagController(AbstractController):
return self._count_by(BookmarkTag.text, filters)
def create(self, **attrs):
- attrs['text'] = attrs['text'].lower()
return super().create(**attrs)
def update(self, filters, attrs):
bgstack15