Skip to content

Commit 878215a

Browse files
authored
Merge pull request #832 from deXol/develop
[BLE] Fix Fido import issues
2 parents bdac447 + 4b05b70 commit 878215a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/MPDevice.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2905,7 +2905,7 @@ bool MPDevice::removeChildFromDB(MPNode* parentNodePt, MPNode* childNodePt, bool
29052905
parentNodePt->removeChild(childNodePt);
29062906
if (deleteFromList)
29072907
{
2908-
loginChildNodes.removeOne(childNodePt);
2908+
childNodes.removeOne(childNodePt);
29092909
delete childNodePt;
29102910
}
29112911
return true;
@@ -5680,7 +5680,7 @@ void MPDevice::startImportFileMerging(const MPDeviceProgressCb &cbProgress, Mess
56805680
/* Load flash contents the usual way */
56815681
memMgmtModeReadFlash(jobs, false,
56825682
cbProgress,
5683-
true, true, true);
5683+
true, true, true, true);
56845684

56855685
connect(jobs, &AsyncJobs::finished, [this, cb, cbProgress, noDelete](const QByteArray &data)
56865686
{

0 commit comments

Comments
 (0)