refactor
This commit is contained in:
parent
17b83ff4c1
commit
be81c1a6d6
|
@ -96,16 +96,18 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
|
||||||
let ltlNoteIdsRes: [string, string[]][] = [];
|
let ltlNoteIdsRes: [string, string[]][] = [];
|
||||||
|
|
||||||
if (!ps.sinceId && !ps.sinceDate) {
|
if (!ps.sinceId && !ps.sinceDate) {
|
||||||
htlNoteIdsRes = await this.redisForTimelines.xrevrange(
|
[htlNoteIdsRes, ltlNoteIdsRes] = await Promise.all([
|
||||||
|
this.redisForTimelines.xrevrange(
|
||||||
ps.withFiles ? `homeTimelineWithFiles:${me.id}` : `homeTimeline:${me.id}`,
|
ps.withFiles ? `homeTimelineWithFiles:${me.id}` : `homeTimeline:${me.id}`,
|
||||||
ps.untilId ? this.idService.parse(ps.untilId).date.getTime() : ps.untilDate ?? '+',
|
ps.untilId ? this.idService.parse(ps.untilId).date.getTime() : ps.untilDate ?? '+',
|
||||||
'-',
|
'-',
|
||||||
'COUNT', limit);
|
'COUNT', limit),
|
||||||
ltlNoteIdsRes = await this.redisForTimelines.xrevrange(
|
this.redisForTimelines.xrevrange(
|
||||||
ps.withFiles ? 'localTimelineWithFiles' : 'localTimeline',
|
ps.withFiles ? 'localTimelineWithFiles' : 'localTimeline',
|
||||||
ps.untilId ? this.idService.parse(ps.untilId).date.getTime() : ps.untilDate ?? '+',
|
ps.untilId ? this.idService.parse(ps.untilId).date.getTime() : ps.untilDate ?? '+',
|
||||||
'-',
|
'-',
|
||||||
'COUNT', limit);
|
'COUNT', limit),
|
||||||
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
const htlNoteIds = htlNoteIdsRes.map(x => x[1][1]).filter(x => x !== ps.untilId);
|
const htlNoteIds = htlNoteIdsRes.map(x => x[1][1]).filter(x => x !== ps.untilId);
|
||||||
|
|
Loading…
Reference in New Issue