Skip to content

Commit

Permalink
remove debugger statement
Browse files Browse the repository at this point in the history
  • Loading branch information
gniezen committed Jul 30, 2024
1 parent 4acc2ed commit b58eb52
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions lib/drivers/i-sens/glucocardExpression.js
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ module.exports = (config) => {
manufacturers: ['Arkray'],
model: 'GlucocardExpression',
});

if (cfg.deviceInfo.driverId === 'EmbraceTALK') {
cfg.deviceInfo.model = 'EmbraceTALK';
cfg.deviceInfo.manufacturers = ['Omnis Health'];
Expand Down Expand Up @@ -310,8 +310,7 @@ module.exports = (config) => {

if (checksum !== raw.checksum) {
debug('BG checksum is', checksum, ', expected', raw.checksum);
//debugger;
//throw new Error('Checksum mismatch'); FIXME
throw new Error('Checksum mismatch');
}

// According to spec, HI >= 600 and LO <= 20
Expand Down

0 comments on commit b58eb52

Please sign in to comment.