diff --git a/src/editor/index.tsx b/src/editor/index.tsx index 0d86d73..f8fa4e8 100644 --- a/src/editor/index.tsx +++ b/src/editor/index.tsx @@ -841,7 +841,7 @@ class Editor extends React.Component { }); }); } - } else if (it.kind === 'string' && it.type === 'text/plain') { + } else if (it.kind === 'string' && (it.type === 'text/plain' || it.type === 'text/uri-list')) { queue.push(new Promise((resolve) => it.getAsString(resolve))); } });