From e15d11a69304b66685957eb81f3461d9b3c22ee7 Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Fri, 11 Jan 2019 12:27:42 -0800 Subject: [PATCH] eventlog: add the old and new manifest in restore --- src/apps.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps.js b/src/apps.js index c9fc2dcc4..6168b0969 100644 --- a/src/apps.js +++ b/src/apps.js @@ -956,7 +956,7 @@ function restore(appId, data, auditSource, callback) { taskmanager.restartAppTask(appId); - eventlog.add(eventlog.ACTION_APP_RESTORE, auditSource, { appId: appId, app: app }); + eventlog.add(eventlog.ACTION_APP_RESTORE, auditSource, { app: app, backupId: backupInfo.id, fromManifest: app.manifest, toManifest: backupInfo.manifest }); callback(null); });