Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

非ログインでローカル/グローバルタイムラインが表示できない不具合の修正 #667

Merged
merged 2 commits into from
Mar 16, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG_YOJO.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ Misskey 2025.2.0
### Client
- yojo-art アップデートを開くとサーバー設定が更新される問題を修正 [#651](https://github.com/yojo-art/cherrypick/pull/651)
- リアクション付ける前に確認ダイアログを追加するオプション [#657](https://github.com/yojo-art/cherrypick/pull/657)
- 非ログインでローカル/グローバルタイムラインが表示できない不具合の修正 [#667](https://github.com/yojo-art/cherrypick/pull/667)

### Server
- リモートのイベントを表示できるように [#658](https://github.com/yojo-art/cherrypick/pull/658)
Expand Down
2 changes: 1 addition & 1 deletion packages/frontend/src/pages/timeline.vue
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ window.addEventListener('resize', () => {
isMobile.value = deviceKind === 'smartphone' || window.innerWidth <= MOBILE_THRESHOLD;
});

const schedulePostList = (await misskeyApi('notes/schedule/list')).length;
const schedulePostList = $i ? (await misskeyApi('notes/schedule/list')).length : 0;

if (!isFriendly.value) provide('shouldOmitHeaderTitle', true);

Expand Down
Loading