Skip to content

Commit

Permalink
Fix copy paste error in DataFilter intervals
Browse files Browse the repository at this point in the history
Fixes #4084
  • Loading branch information
amtriathlon committed Nov 27, 2021
1 parent 0762f0d commit 8dbaad3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Core/DataFilter.cpp
Expand Up @@ -5038,7 +5038,7 @@ Result Leaf::eval(DataFilterRuntime *df, Leaf *leaf, const Result &x, long it, R
value = ii->start;
asstring = time_to_string(ii->start);
} else if(symbol == "stop") {
value = ii->start;
value = ii->stop;
asstring = time_to_string(ii->stop);
} else if(symbol == "type") {
asstring = RideFileInterval::typeDescription(ii->type);
Expand Down

0 comments on commit 8dbaad3

Please sign in to comment.