diff options
| author | adamhrv <adam@ahprojects.com> | 2019-04-03 23:24:12 +0200 |
|---|---|---|
| committer | adamhrv <adam@ahprojects.com> | 2019-04-03 23:24:12 +0200 |
| commit | 7d2043eb24cd171e809d83219e543ce9541ba821 (patch) | |
| tree | c415aae6c682093b18052d622fd201e983e18fd1 /scraper/client/actions.js | |
| parent | 2db426422eedc4847618f972b02189f3d49fe03a (diff) | |
| parent | 24e4f4af71f1e146f33688822ac3e4242339faa4 (diff) | |
Merge branch 'master' of github.com:adamhrv/megapixels_dev
Diffstat (limited to 'scraper/client/actions.js')
| -rw-r--r-- | scraper/client/actions.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scraper/client/actions.js b/scraper/client/actions.js index b5c477f6..47ca6ff5 100644 --- a/scraper/client/actions.js +++ b/scraper/client/actions.js @@ -41,8 +41,8 @@ export const getVerificationsDataset = dataset => dispatch => ( api(dispatch, get, 'verifications', '/api/verifications/' + dataset, {}) ) -export const getVerification = sha256 => dispatch => ( - api(dispatch, get, 'verify', '/api/verify/' + sha256, {}) +export const getVerification = (dataset, sha256) => dispatch => ( + api(dispatch, get, 'verify', '/api/verify/' + dataset + '/' + sha256, {}) ) export const postVerification = data => dispatch => ( |
