diff --git a/services/project-history/app/js/HistoryStoreManager.js b/services/project-history/app/js/HistoryStoreManager.js index 7c74538592..2960e3c8b9 100644 --- a/services/project-history/app/js/HistoryStoreManager.js +++ b/services/project-history/app/js/HistoryStoreManager.js @@ -317,7 +317,7 @@ export function createBlobForUpdate(projectId, historyId, update, callback) { if (err) { return callback(err) } - if (update.hash !== fileHash) { + if (update.hash && update.hash !== fileHash) { logger.warn( { projectId, fileId, webHash: update.hash, fileHash }, 'hash mismatch between web and project-history'