fix: meta title for pages that don't have a default title

This commit is contained in:
Jannat Patel
2025-04-16 17:09:09 +05:30
parent 1b49cc1408
commit f245cf2c5d

View File

@@ -57,6 +57,9 @@ def get_meta(app_path, title, favicon, description):
if not meta.get("image"):
meta["image"] = favicon
if not meta.get("keywords"):
meta["keywords"] = ""
if not meta:
meta = {
"title": title,