1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-19 05:09:42 +02:00

Skip restore of user logs

This commit is contained in:
Harvey Kandola 2024-02-19 11:54:50 -05:00
parent acb59e1b43
commit 8895db56af

View file

@ -124,10 +124,10 @@ func (r *restoreHandler) PerformRestore(b []byte, l int64) (err error) {
} }
// User Activity. // User Activity.
err = r.dmzUserActivity() // err = r.dmzUserActivity()
if err != nil { // if err != nil {
return // return
} // }
// User Config. // User Config.
err = r.dmzUserConfig() err = r.dmzUserConfig()
@ -144,10 +144,10 @@ func (r *restoreHandler) PerformRestore(b []byte, l int64) (err error) {
} }
// Audit Log. // Audit Log.
err = r.dmzAudit() // err = r.dmzAudit()
if err != nil { // if err != nil {
return // return
} // }
// Action. // Action.
err = r.dmzAction() err = r.dmzAction()