Commit 2c030bb7577151000bfb55e38af44afd399ca9e5

Authored by Adhidarma Hadiwinoto
1 parent 0bb40e36eb
Exists in master

fix missing async

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

lib/apiserver/routers/smstools-config.js
... ... @@ -27,7 +27,7 @@ async function pageIndex(req, res) {
27 27 });
28 28 }
29 29  
30   -function pageGenerate(req, res) {
  30 +async function pageGenerate(req, res) {
31 31 res.end(await smstoolsConfigCreator());
32 32 }
33 33