Don't paste empty prompts

When pasting e.g. an image, window.clipboardData).getData('text') returns an empty string, which would delete the prompt.
https://discord.com/channels/1014774730907209781/1093186485563424838
This commit is contained in:
JeLuF 2023-04-07 22:24:35 +02:00
parent 7d4d85284b
commit 9e244f758c

View File

@ -608,7 +608,7 @@ document.addEventListener('paste', async (event) => {
}
const paste = (event.clipboardData || window.clipboardData).getData('text')
const selection = window.getSelection()
if (selection.toString().trim().length <= 0 && await parseContent(paste)) {
if (paste != "" && selection.toString().trim().length <= 0 && await parseContent(paste)) {
event.preventDefault()
return
}