Skip to content

Commit

Permalink
fix(backend): ページのOGP URLが違うのを修正 (misskey-dev#13749)
Browse files Browse the repository at this point in the history
* fix(backend): ページのOGP URLが違うのを修正

* Update Changelog

* typo
  • Loading branch information
kakkokari-gtyih authored Apr 27, 2024
1 parent 0a31e13 commit cb5d8bd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@
- Fix: ダイアログの入力で字数制限に違反していてもEnterキーが押せてしまう問題を修正
- Fix: ダイレクト投稿の宛先が保存されない問題を修正
- Fix: Playのページを離れたときに、Playが正常に初期化されない問題を修正
- Fix: ページのOGP URLが間違っているのを修正

### Server
- Enhance: エンドポイント`antennas/update`の必須項目を`antennaId`のみに
Expand Down
2 changes: 1 addition & 1 deletion packages/backend/src/server/web/views/page.pug
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ extends ./base
block vars
- const user = page.user;
- const title = page.title;
- const url = `${config.url}/@${user.username}/${page.name}`;
- const url = `${config.url}/@${user.username}/pages/${page.name}`;

block title
= `${title} | ${instanceName}`
Expand Down

0 comments on commit cb5d8bd

Please sign in to comment.