Fix bad removeDevice map check
This commit is contained in:
		@@ -102,7 +102,7 @@ void DeviceManager::removeDevice(std::string path)
 | 
				
			|||||||
        logPrintf(INFO, "Receiver on %s disconnected", path.c_str());
 | 
					        logPrintf(INFO, "Receiver on %s disconnected", path.c_str());
 | 
				
			||||||
    } else {
 | 
					    } else {
 | 
				
			||||||
        auto device = _devices.find(path);
 | 
					        auto device = _devices.find(path);
 | 
				
			||||||
        if(device != _devices.find(path)) {
 | 
					        if(device != _devices.end()) {
 | 
				
			||||||
            _devices.erase(device);
 | 
					            _devices.erase(device);
 | 
				
			||||||
            logPrintf(INFO, "Device on %s disconnected", path.c_str());
 | 
					            logPrintf(INFO, "Device on %s disconnected", path.c_str());
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user