[MM-55737] Add Request Context to UserStore.Save (#26109)

Этот коммит содержится в:
Trang
2024-02-16 23:12:49 +07:00
коммит произвёл GitHub
родитель 9643a16408
Коммит f130615011
44 изменённых файлов: 553 добавлений и 552 удалений

Просмотреть файл

@@ -2157,8 +2157,8 @@ func (a *App) SetPostReminder(postID, userID string, targetTime int64) *model.Ap
return nil
}
func (a *App) CheckPostReminders() {
systemBot, appErr := a.GetSystemBot()
func (a *App) CheckPostReminders(rctx request.CTX) {
systemBot, appErr := a.GetSystemBot(rctx)
if appErr != nil {
mlog.Error("Failed to get system bot", mlog.Err(appErr))
return