Skip to content

Commit

Permalink
Bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
goxr3plus committed Sep 22, 2018
1 parent 2c785b8 commit b598abe
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public WaveFormService(XPlayerController xPlayerController) {
*/
public void startService(String fileAbsolutePath , WaveFormJob waveFormJob) {

if (this.fileAbsolutePath != null && fileAbsolutePath.equals(this.fileAbsolutePath)) //If it is the same file
if (waveFormJob == WaveFormJob.AMPLITUDES_AND_WAVEFORM && this.fileAbsolutePath != null && fileAbsolutePath.equals(this.fileAbsolutePath)) //If it is the same file
return;

//Check
Expand Down

0 comments on commit b598abe

Please sign in to comment.