fnp
/
wolnelektury.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
ca48f30
)
fix
author
Jan Szejko
<janek37@gmail.com>
Mon, 24 Sep 2018 10:57:26 +0000
(12:57 +0200)
committer
Jan Szejko
<janek37@gmail.com>
Mon, 24 Sep 2018 10:57:26 +0000
(12:57 +0200)
src/newtagging/models.py
patch
|
blob
|
history
diff --git
a/src/newtagging/models.py
b/src/newtagging/models.py
index
e42295d
..
b90ea8e
100644
(file)
--- a/
src/newtagging/models.py
+++ b/
src/newtagging/models.py
@@
-64,7
+64,10
@@
class TagManager(models.Manager):
# Add new tags
tags_to_add = [tag for tag in updated_tags if tag not in current_tags]
for tag in tags_to_add:
# Add new tags
tags_to_add = [tag for tag in updated_tags if tag not in current_tags]
for tag in tags_to_add:
- self.intermediary_table_model.objects.get_or_create(tag=tag, content_object=obj)
+ existing = self.intermediary_table_model.objects.filter(
+ content_type__pk=content_type.pk, object_id=obj.pk, tag=tag)
+ if not existing:
+ self.intermediary_table_model.objects.create(tag=tag, content_object=obj)
tags_updated.send(sender=type(obj), instance=obj, affected_tags=tags_to_add + tags_for_removal)
tags_updated.send(sender=type(obj), instance=obj, affected_tags=tags_to_add + tags_for_removal)