diff options
author | bobzel <zzzman@gmail.com> | 2023-12-02 14:46:35 -0500 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2023-12-02 14:46:35 -0500 |
commit | 6abda9e76cce35272ff73c3911af5aa8c18ce30b (patch) | |
tree | ccb3a2f4590d634c29244bfb594f98865ce9481e /src/client/views/PreviewCursor.tsx | |
parent | 24e06152089f650c4a3b1f9625a9c20b5e09199a (diff) |
jimp cleanup
Diffstat (limited to 'src/client/views/PreviewCursor.tsx')
-rw-r--r-- | src/client/views/PreviewCursor.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/PreviewCursor.tsx b/src/client/views/PreviewCursor.tsx index e3a43d45f..d1bd0500b 100644 --- a/src/client/views/PreviewCursor.tsx +++ b/src/client/views/PreviewCursor.tsx @@ -50,7 +50,7 @@ export class PreviewCursor extends React.Component<{}> { PreviewCursor._slowLoadDocuments?.(plain.split('v=')[1].split('&')[0], options, generatedDocuments, '', undefined, PreviewCursor._addDocument).then(batch.end); } else if (re.test(plain)) { const url = plain; - if (url.startsWith(window.location.href)) { + if (!url.startsWith(window.location.href)) { undoBatch(() => PreviewCursor._addDocument( Docs.Create.WebDocument(url, { |