Skip to content

Commit

Permalink
Fix in isLegacy function
Browse files Browse the repository at this point in the history
  • Loading branch information
oscgonfer committed Mar 1, 2024
1 parent 2513b67 commit 690a16a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/app/core/utils/deviceUtils.service.js
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,10 @@
if (!object.hardware || !object.hardware.version || object.hardware.version.major > 1) {
return false;
} else {
return true;
if (object.hardware.version.major == 1 && object.hardware.version.minor <5 ){
return true;
}
return false;
}
}

Expand Down

0 comments on commit 690a16a

Please sign in to comment.