diff options
Diffstat (limited to 'scraper/client/paper')
| -rw-r--r-- | scraper/client/paper/paper.verify.js | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/scraper/client/paper/paper.verify.js b/scraper/client/paper/paper.verify.js index c2bf4b90..5f4a7240 100644 --- a/scraper/client/paper/paper.verify.js +++ b/scraper/client/paper/paper.verify.js @@ -32,23 +32,23 @@ class PaperVerify extends Component { componentDidUpdate(oldProps) { const { sha256 } = this.props.match.params - const { address } = this.props.api + const { verify } = this.props.api const { sha256: oldSha256 } = oldProps.match.params - const { address: oldAddress } = oldProps.api - const oldPaper = oldAddress ? oldAddress.paper : null - const paper = address ? address.paper : null + const { verify: oldVerify } = oldProps.api + const oldPaper = oldVerify ? oldVerify.paper : null + const paper = verify ? verify.paper : null if (oldSha256 && sha256 !== oldSha256) { - console.log('update address') + console.log('update verification') this.props.actions.getVerification(sha256) const citationState = this.getCitationState(sha256) this.setState({ ...initialState, ...citationState, }) - } else if (address && !address.loading && address.paper && (!oldPaper || oldPaper !== address.paper)) { + } else if (verify && !verify.loading && verify.paper && (!oldPaper || oldPaper !== verify.paper)) { if (paper.error) { - console.log('USING PAPER ADDRESS') + console.log('USING PAPER VERIFICATION') const citationState = this.getCitationState(sha256) this.setState({ ...initialState, |
