Skip to content

Commit

Permalink
Merge pull request #188 from ecency/bugfix/180-fix-metadata-of-feed-page
Browse files Browse the repository at this point in the history
Fixed typo
  • Loading branch information
feruzm authored Nov 22, 2024
2 parents 4dd134e + 6e93f16 commit 375b148
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export async function generateFeedMetadata(filter: string, tag: string) {
let canonical = `${defaults.base}/${filter}`;
let rss = "";

if (tag.startsWith("%40")) {
if (tag?.startsWith("%40")) {
title = `${tag.replace("%40", "@")} ${filter} on decentralized web – Ecency`;
description = i18next.t("entry-index.description-user-feed", { u: tag });
} else if (tag) {
Expand Down

0 comments on commit 375b148

Please sign in to comment.