Skip to content

Commit

Permalink
Fixed typo in function name
Browse files Browse the repository at this point in the history
  • Loading branch information
JaapvanEkris authored Dec 29, 2024
1 parent 43bbd23 commit e0c83ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/recorders/fitRecorder.js
Original file line number Diff line number Diff line change
Expand Up @@ -643,7 +643,7 @@ export function createFITRecorder (config) {
}

async function createVO2MaxRecord (writer, workout) {
if (!isNan(VO2max.result()) && VO2max.result() > 10 && VO2max.result() < 60) {
if (!isNaN(VO2max.result()) && VO2max.result() > 10 && VO2max.result() < 60) {
writer.writeMessage(
'max_met_data',
{
Expand Down

0 comments on commit e0c83ab

Please sign in to comment.