13.11.0 マージ時のミスを修正

This commit is contained in:
riku6460 2023-04-09 02:59:50 +09:00
parent 1ed9e440c7
commit 94f5b78b6b
No known key found for this signature in database
GPG Key ID: 27414FA27DB94CF6
2 changed files with 2 additions and 3 deletions

View File

@ -6,7 +6,7 @@ import * as crypto from 'node:crypto';
const TIME2000 = 946684800000;
let counter = crypto.randomBytes(2).readUInt16LE(0);
export function getTimeId(time: number): string {
function getTime(time: number): string {
time = time - TIME2000;
if (time < 0) time = 0;
@ -21,7 +21,7 @@ export function genAid(date: Date): string {
const t = date.getTime();
if (isNaN(t)) throw 'Failed to create AID: Invalid Date';
counter++;
return getTimeId(t) + getNoise();
return getTime(t) + getNoise();
}
export function parseAid(id: string): { date: Date; } {

View File

@ -65,7 +65,6 @@ export default class extends Endpoint<typeof meta, typeof paramDef> {
.where('following.followerId = :followerId', { followerId: me.id })
.getMany();
const minId = getTimeId(new Date(Date.now() - (1000 * 60 * 60 * 24 * 30)).getTime()) + '00'; // 30日前まで
//#region Construct query
const query = this.queryService.makePaginationQuery(this.notesRepository.createQueryBuilder('note'),
ps.sinceId, ps.untilId, ps.sinceDate, ps.untilDate)