Fixed a problem with the tags.
This commit is contained in:
parent
7ae53206e1
commit
f10c111925
@ -84,7 +84,8 @@ class PostController(BaseController):
|
|||||||
db_tags = Session.query(Tag).filter(Tag.url.in_(tag_urls)).all()
|
db_tags = Session.query(Tag).filter(Tag.url.in_(tag_urls)).all()
|
||||||
post.tags = []
|
post.tags = []
|
||||||
for tag in db_tags:
|
for tag in db_tags:
|
||||||
tag_list.remove(tag.name)
|
if tag.name in tag_list:
|
||||||
|
tag_list.remove(tag.name)
|
||||||
post.tags.append(tag)
|
post.tags.append(tag)
|
||||||
for tag in tag_list:
|
for tag in tag_list:
|
||||||
post.tags.append(Tag(name=tag, url=utils.generate_url(tag)))
|
post.tags.append(Tag(name=tag, url=utils.generate_url(tag)))
|
||||||
|
Reference in New Issue
Block a user