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