morsechat icon indicating copy to clipboard operation
morsechat copied to clipboard

bug report

Open kslamph opened this issue 1 year ago • 0 comments

   else{
            sound.off()
            if(t > times.wordGap){
                morseOut += letter + "   "
                morseLettersOut += translateToReadable(letter, dialectName) + "  "
                letter = ""
            }
            else if(t > times.letterGap){
                morseOut += letter + " "
                morseLettersOut += translateToReadable(letter, dialectName)
                letter = ""
            }
        }

web/src/pages/AppLogic.jsx line 65 it should be t>=times.wordGap and t>=times.letterGap instead of >

kslamph avatar Apr 15 '24 17:04 kslamph