Skip to content

Commit

Permalink
不要なasを柵状
Browse files Browse the repository at this point in the history
  • Loading branch information
Steve-0628 committed Aug 16, 2024
1 parent 97730e7 commit b4fcafe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/backend/src/core/activitypub/ApRendererService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -477,7 +477,7 @@ export class ApRendererService {
const mutualLinks = profile.mutualLinkSections.flatMap(section =>
section.mutualLinks.map(link => ({
type: 'PropertyValue',
name: (section.name ?? link.description ?? 'Link') as string,
name: section.name ?? link.description ?? 'Link',
value: `<a href="${link.url}" target="_blank">${link.description}</a>`,
})),
);
Expand Down

0 comments on commit b4fcafe

Please sign in to comment.