We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf5d09e commit 103a31dCopy full SHA for 103a31d
web/src/pages/ShotHistory/utils.js
@@ -51,9 +51,11 @@ export function parseHistoryData(shot) {
51
52
// Track valid volume values (prefer bluetooth weight 'v', fall back to estimated 'ev')
53
let currentVolume = sample.v;
54
- if (isNaN(currentVolume) || currentVolume <= 0) {
55
- currentVolume = sample.ev;
56
- }
+
+ // Never take estimated volume (until fixed)
+ //if (isNaN(currentVolume) || currentVolume <= 0) {
57
+ // currentVolume = sample.ev;
58
+ //}
59
60
if (!isNaN(currentVolume) && currentVolume > 0) {
61
lastValidVolume = currentVolume;
0 commit comments