fix type error in NotificationService.ts

This commit is contained in:
Hazelnoot 2025-04-02 22:31:53 -04:00
parent 5e941385db
commit db58f4dda7

View file

@ -165,7 +165,7 @@ export class NotificationService implements OnApplicationShutdown {
redisId = (await this.redisClient.xadd( redisId = (await this.redisClient.xadd(
`notificationTimeline:${notifieeId}`, `notificationTimeline:${notifieeId}`,
'MAXLEN', '~', this.config.perUserNotificationsMaxCount.toString(), 'MAXLEN', '~', this.config.perUserNotificationsMaxCount.toString(),
this.toXListId(notification.id), this.toXListId(notification.id, 0),
'data', JSON.stringify(notification)))!; 'data', JSON.stringify(notification)))!;
} catch (e) { } catch (e) {
// The ID specified in XADD is equal or smaller than the target stream top item で失敗することがあるのでリトライ // The ID specified in XADD is equal or smaller than the target stream top item で失敗することがあるのでリトライ