修复问题

pull/930/merge
lyswhut 2022-02-14 15:48:43 +08:00
parent c12be6a1c8
commit 5aa027f1a9
2 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@ const defaultSetting = {
isSavePlayTime: false,
audioVisualization: false,
waitPlayEndStop: true,
waitPlayEndStopTime: 0,
waitPlayEndStopTime: '',
},
desktopLyric: {
enable: false,

View File

@ -57,7 +57,7 @@ export default {
text = ''
}
time.value = text
return orgText == text ? parseInt(text) : ''
return text && orgText == text ? parseInt(text) : ''
}
const handleConfirm = () => {
let time = verify()