fix type error in NotificationService.ts
This commit is contained in:
@@ -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 で失敗することがあるのでリトライ
|
||||||
|
|||||||
Reference in New Issue
Block a user