Skip to content

Commit

Permalink
Fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
dkildar committed Nov 22, 2024
1 parent 760aa4f commit 6e93f16
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 6e93f16

Please sign in to comment.