Skip to content

Commit

Permalink
fix error respsonse
Browse files Browse the repository at this point in the history
  • Loading branch information
F-Node-Karlsruhe committed Mar 30, 2023
1 parent 41ff388 commit 4ad16d1
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ WIP
---


1.4.2 (2023-03-30)
---

- fix error message

1.4.1 (2023-03-21)
---

Expand Down
2 changes: 1 addition & 1 deletion api/src/routes/verify/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export class VerifyRoutes {
return res.status(StatusCodes.OK).json(results);

} catch (error) {
return res.status(StatusCodes.BAD_REQUEST).send(error);
return res.status(StatusCodes.BAD_REQUEST).send('Something went wrong!\n' + error);
}

}
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/store/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { createStore } from 'vuex'

export default createStore({
state: {
version: '1.4.1',
version: '1.4.2',
verifiables: [],
VC_REGISTRY: process.env.VC_REGISTRY || 'https://ssi.eecc.de/api/registry/vcs/',
OPENID_ENDPOINT: process.env.OPENID_ENDPOINT || 'https://ssi.eecc.de/api/openid/',
Expand Down

0 comments on commit 4ad16d1

Please sign in to comment.