1
0
Fork 0
mirror of https://github.com/paricafe/misskey.git synced 2025-03-20 20:39:23 -05:00

fix(client): ユーザーページのファイル付きTLはリプライも含む

This commit is contained in:
tamaina 2023-02-14 07:25:14 +00:00
parent b7b8fd4b59
commit 57c94a5cf0

View file

@ -32,7 +32,7 @@ const pagination = {
limit: 10,
params: computed(() => ({
userId: props.user.id,
includeReplies: include.value === 'replies',
includeReplies: include.value === 'replies' || include.value === 'files',
withFiles: include.value === 'files',
})),
};