fix(vhd-lib/VhdDirectory#mergeBlock): fix rename condition
Introduced by fd752fee8
This commit is contained in:
parent
512b96af24
commit
61691ac46b
@ -33,6 +33,7 @@
|
|||||||
- @xen-orchestra/backups patch
|
- @xen-orchestra/backups patch
|
||||||
- @xen-orchestra/fs major
|
- @xen-orchestra/fs major
|
||||||
- vhd-lib major
|
- vhd-lib major
|
||||||
|
- xo-vmdk-to-vhd patch
|
||||||
- xo-server minor
|
- xo-server minor
|
||||||
- xo-web patch
|
- xo-web patch
|
||||||
|
|
||||||
|
@ -251,7 +251,7 @@ exports.VhdDirectory = class VhdDirectory extends VhdAbstract {
|
|||||||
async mergeBlock(child, blockId, isResumingMerge = false) {
|
async mergeBlock(child, blockId, isResumingMerge = false) {
|
||||||
const childBlockPath = child._getFullBlockPath?.(blockId)
|
const childBlockPath = child._getFullBlockPath?.(blockId)
|
||||||
if (
|
if (
|
||||||
childBlockPath !== undefined ||
|
childBlockPath === undefined ||
|
||||||
this._handler !== child._handler ||
|
this._handler !== child._handler ||
|
||||||
child.compressionType !== this.compressionType ||
|
child.compressionType !== this.compressionType ||
|
||||||
child.compressionType === 'MIXED'
|
child.compressionType === 'MIXED'
|
||||||
|
Loading…
Reference in New Issue
Block a user