Fix article tags to be a set instead of a list
This commit is contained in:
@@ -138,7 +138,7 @@ class Article(Content):
|
||||
meta["slug"],
|
||||
meta["date"],
|
||||
meta.get("updated", None),
|
||||
meta.get("tags", None),
|
||||
set(meta["tags"]) if "tags" in meta else None,
|
||||
meta.get("summary", None),
|
||||
)
|
||||
self.title: str = meta["title"]
|
||||
|
||||
Reference in New Issue
Block a user