Show More
@@ -71,7 +71,7 b' class SettingsManager:' | |||||
71 | tag_names = self.get_setting(SETTING_FAVORITE_TAGS) |
|
71 | tag_names = self.get_setting(SETTING_FAVORITE_TAGS) | |
72 | tags = [] |
|
72 | tags = [] | |
73 | if tag_names: |
|
73 | if tag_names: | |
74 | tags = Tag.objects.filter(name__in=tag_names) |
|
74 | tags = list(Tag.objects.filter(name__in=tag_names)) | |
75 | return tags |
|
75 | return tags | |
76 |
|
76 | |||
77 | def add_fav_tag(self, tag): |
|
77 | def add_fav_tag(self, tag): | |
@@ -95,7 +95,7 b' class SettingsManager:' | |||||
95 | tag_names = self.get_setting(SETTING_HIDDEN_TAGS) |
|
95 | tag_names = self.get_setting(SETTING_HIDDEN_TAGS) | |
96 | tags = [] |
|
96 | tags = [] | |
97 | if tag_names: |
|
97 | if tag_names: | |
98 | tags = Tag.objects.filter(name__in=tag_names) |
|
98 | tags = list(Tag.objects.filter(name__in=tag_names)) | |
99 |
|
99 | |||
100 | return tags |
|
100 | return tags | |
101 |
|
101 |
General Comments 0
You need to be logged in to leave comments.
Login now