diff --git a/src/reHDD.cpp b/src/reHDD.cpp index fbc8d96..e1f91bc 100644 --- a/src/reHDD.cpp +++ b/src/reHDD.cpp @@ -237,7 +237,7 @@ void reHDD::filterNewDrives(vector * pvecOldDrives, vector * pvecN itOld->bIsOffline = true; //set offline befor seachring in the new list for (itNew = pvecNewDrives->begin(); itNew != pvecNewDrives->end();) { - if(itOld->getSerial() == itNew->getSerial()) + if((itOld->getSerial() == itNew->getSerial()) || (itOld->getPath() == itNew->getPath())) { itOld->bIsOffline = false; //drive is still attached #ifdef LOG_LEVEL_HIGH