diff --git a/sleepyhead/oximeterimport.cpp b/sleepyhead/oximeterimport.cpp
index 624740ce..552f050f 100644
--- a/sleepyhead/oximeterimport.cpp
+++ b/sleepyhead/oximeterimport.cpp
@@ -287,6 +287,13 @@ void OximeterImport::on_directImportButton_clicked()
void OximeterImport::doImport()
{
if (oximodule->commandDriven()) {
+ if (chosen_sessions.size() == 0) {
+ ui->connectLabel->setText("
"+tr("Nothing to import for %1").arg(oximodule->loaderName())+"
");
+ ui->logBox->appendPlainText(tr("Could not find any valid sessions on your oximeter."));
+
+ updateStatus(tr("Your oximeter did not have any valid sessions"));
+ return;
+ }
ui->connectLabel->setText(""+tr("Waiting for %1 to start").arg(oximodule->loaderName())+"
");
updateStatus(tr("Waiting for the device to start the upload process..."));
} else {
@@ -301,10 +308,7 @@ void OximeterImport::doImport()
oximodule->Open("import");
if (oximodule->commandDriven()) {
- int chosen = 0;
- if (chosen_sessions.size() > 0) {
- chosen = chosen_sessions.takeFirst();
- }
+ int chosen = chosen_sessions.takeFirst();
oximodule->getSessionData(chosen);
}