いいかんじ

This commit is contained in:
mattyatea 2023-09-28 16:48:02 +09:00
parent 81f56f08b7
commit 9f1a497206
2 changed files with 9 additions and 5 deletions

View File

@ -1,6 +1,6 @@
{
"name": "misskey",
"version": "2023.9.1-prismisskey.1",
"version": "2023.9.1-prismisskey.2",
"codename": "nasubi",
"repository": {
"type": "git",

View File

@ -92,11 +92,13 @@ if (props.src === 'antenna') {
endpoint = 'notes/hybrid-timeline';
query = {
withFiles: true,
withReplies: defaultStore.state.showTimelineReplies,
withRenotes: props.withRenotes,
withReplies: props.withReplies,
};
connection = stream.useChannel('hybridTimeline', {
withFiles: true,
withReplies: defaultStore.state.showTimelineReplies,
withRenotes: props.withRenotes,
withReplies: props.withReplies,
});
connection.on('note', prepend);
} else if (props.src === 'social') {
@ -113,10 +115,12 @@ if (props.src === 'antenna') {
} else if (props.src === 'all') {
endpoint = 'notes/hybrid-all-timeline';
query = {
withReplies: defaultStore.state.showTimelineReplies,
withRenotes: props.withRenotes,
withReplies: props.withReplies,
};
connection = stream.useChannel('hybridAllTimeline', {
withReplies: defaultStore.state.showTimelineReplies,
withRenotes: props.withRenotes,
withReplies: props.withReplies,
});
connection.on('note', prepend);
} else if (props.src === 'global') {