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:
parent
746d145258
commit
44a81069ac
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue