DEV: Avoid creating system message when system user initiates restore (#30027)

There is no point creating a message for the system user since it is a
non-human user.
This commit is contained in:
Alan Guo Xiang Tan 2024-12-02 16:13:38 +08:00 committed by GitHub
parent 746d145258
commit 44a81069ac
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 0 deletions

View File

@ -144,6 +144,8 @@ module BackupRestore
end
def notify_user
return if @success && @user_id == Discourse::SYSTEM_USER_ID
if user = User.find_by_email(@user_info[:email])
log "Notifying '#{user.username}' of the end of the restore..."
status = @success ? :restore_succeeded : :restore_failed