mirror of
https://github.com/DIYgod/RSSHub.git
synced 2026-09-01 14:57:14 +08:00
style: auto format
This commit is contained in:
@@ -100,17 +100,16 @@ const getUserMedia = (id: string, params?: Record<string, any>) =>
|
||||
const getUserLikes = (id: string, params?: Record<string, any>) =>
|
||||
cacheTryGet(id, params, async (id, params = {}) =>
|
||||
gatherLegacyFromData(
|
||||
await paginationTweets(
|
||||
'Likes',
|
||||
id,
|
||||
{
|
||||
...params,
|
||||
includeHasBirdwatchNotes: false,
|
||||
includePromotedContent: false,
|
||||
withBirdwatchNotes: false,
|
||||
withVoice: false,
|
||||
withV2Timeline: true,
|
||||
})));
|
||||
await paginationTweets('Likes', id, {
|
||||
...params,
|
||||
includeHasBirdwatchNotes: false,
|
||||
includePromotedContent: false,
|
||||
withBirdwatchNotes: false,
|
||||
withVoice: false,
|
||||
withV2Timeline: true,
|
||||
})
|
||||
)
|
||||
);
|
||||
|
||||
const getUserTweet = (id: string, params?: Record<string, any>) =>
|
||||
cacheTryGet(id, params, async (id, params = {}) =>
|
||||
|
||||
@@ -88,7 +88,7 @@ const gqlFeatures = {
|
||||
ListLatestTweetsTimeline: gqlFeatureFeed,
|
||||
HomeTimeline: gqlFeatureFeed,
|
||||
TweetDetail: TweetDetailFeatures,
|
||||
Likes: gqlFeatureFeed
|
||||
Likes: gqlFeatureFeed,
|
||||
};
|
||||
|
||||
const timelineParams = {
|
||||
|
||||
Reference in New Issue
Block a user