Skip to content

Commit 5f50af4

Browse files
committed
Resolved missing this. issue
1 parent eafa1bb commit 5f50af4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/graph_spectrum_calc.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ GraphSpectrumCalc.setOutTime = function(time) {
7979
if ((time - this._analyserTimeRange.in) <= MAX_ANALYSER_LENGTH) {
8080
this._analyserTimeRange.out = time;
8181
} else {
82-
this._analyserTimeRange.out = analyserTimeRange.in + MAX_ANALYSER_LENGTH;
82+
this._analyserTimeRange.out = this._analyserTimeRange.in + MAX_ANALYSER_LENGTH;
8383
}
8484
return this._analyserTimeRange.out;
8585
};

0 commit comments

Comments
 (0)