diff options
| author | Sheogorath | 2019-10-12 19:48:09 +0200 |
|---|---|---|
| committer | GitHub | 2019-10-12 19:48:09 +0200 |
| commit | ce99a79352ea145cfbfc579592b96e53ba843b66 (patch) | |
| tree | 397c4116580a9d6cd5273c92889ad621e1c4db42 | |
| parent | cd34a8c70226a094b5698ae7ab8b3bcd5ce75b41 (diff) | |
| parent | 7e5bb8a24b4c2ffa643d37cf93328c757fe11f90 (diff) | |
Merge pull request #199 from SISheogorath/fix/opengraph
Fix broken error template due to missing opengraph
| -rw-r--r-- | lib/response.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/response.js b/lib/response.js index 7535d266..74d71d52 100644 --- a/lib/response.js +++ b/lib/response.js @@ -58,7 +58,8 @@ function responseError (res, code, detail, msg) { title: code + ' ' + detail + ' ' + msg, code: code, detail: detail, - msg: msg + msg: msg, + opengraph: [] }) } |
