Combo: fix ReadQuickInfoCommand to handle empty bolus history.
This commit is contained in:
parent
ef650b80a1
commit
3ed4aa468d
|
@ -39,6 +39,7 @@ public class ReadQuickInfoCommand extends BaseCommand {
|
|||
// read bolus records
|
||||
int totalRecords = (int) scripter.getCurrentMenu().getAttribute(MenuAttribute.TOTAL_RECORD);
|
||||
int record = (int) scripter.getCurrentMenu().getAttribute(MenuAttribute.CURRENT_RECORD);
|
||||
if (record > 0) {
|
||||
while (true) {
|
||||
bolusHistory.add(readBolusRecord());
|
||||
if (bolusHistory.size() == numberOfBolusRecordsToRetrieve || record == totalRecords) {
|
||||
|
@ -51,6 +52,7 @@ public class ReadQuickInfoCommand extends BaseCommand {
|
|||
}
|
||||
record = (int) scripter.getCurrentMenu().getAttribute(MenuAttribute.CURRENT_RECORD);
|
||||
}
|
||||
}
|
||||
if (log.isDebugEnabled()) {
|
||||
if (!result.history.bolusHistory.isEmpty()) {
|
||||
log.debug("Read bolus history (" + result.history.bolusHistory.size() + "):");
|
||||
|
|
Loading…
Reference in a new issue