From d4ea9c8892802e53ddd2ff70f67d45baf8ecfc47 Mon Sep 17 00:00:00 2001 From: Julien Fontanet Date: Tue, 4 May 2021 14:22:20 +0200 Subject: [PATCH] fix(backups/_VmBackup#_selectBaseVm): typo Fixes #5766 Introduced in 1d1bf504d --- @xen-orchestra/backups/_VmBackup.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/@xen-orchestra/backups/_VmBackup.js b/@xen-orchestra/backups/_VmBackup.js index 7f65b7b81..8ff7cebbc 100644 --- a/@xen-orchestra/backups/_VmBackup.js +++ b/@xen-orchestra/backups/_VmBackup.js @@ -292,7 +292,7 @@ exports.VmBackup = class VmBackup { const presentBaseVdis = new Map(baseUuidToSrcVdi) const writers = this._writers for (const writer of this._writers) { - if (parentBaseVdis.size === 0) { + if (presentBaseVdis.size === 0) { break } await writer.checkBaseVdis(presentBaseVdis, baseVm)