diff --git a/app/scenes/Document/Document.js b/app/scenes/Document/Document.js index 3ee00115f..534ff0c65 100644 --- a/app/scenes/Document/Document.js +++ b/app/scenes/Document/Document.js @@ -156,7 +156,9 @@ class DocumentScene extends React.Component { this.viewTimeout = setTimeout(document.view, MARK_AS_VIEWED_AFTER); } - if (!this.revision) { + const isMove = props.location.pathname.match(/move$/); + const canRedirect = !this.revision && !isMove; + if (canRedirect) { const canonicalUrl = updateDocumentUrl( props.match.url, document.url