fix streaming
This commit is contained in:
parent
d50ad16ac8
commit
0cdd5c2241
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "misskey",
|
||||
"version": "12.118.1-calc.rc.5.1",
|
||||
"version": "12.118.1-calc.rc.6",
|
||||
"codename": "aqua",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -30,7 +30,7 @@ export default class extends Channel {
|
||||
// フォローしているチャンネルの投稿 の場合だけ
|
||||
const meta = await fetchMeta();
|
||||
if (!(
|
||||
((note.user.host == null || meta.recommendedInstances.includes(note.user.host)) && note.visibility === 'public')
|
||||
((note.user.host != null && meta.recommendedInstances.includes(note.user.host)) && note.visibility === 'public')
|
||||
)) return;
|
||||
|
||||
// Ignore notes from instances the user has muted
|
||||
|
Loading…
Reference in New Issue
Block a user