Commit 945185c59cc2c22e41435da841f2e6ef64ec1d79

Authored by Adhidarma Hadiwinoto
1 parent 84abd91409
Exists in master

Fix missing ()

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

lib/apiserver/routers/smstools-config.js
... ... @@ -154,7 +154,7 @@ async function pageInstallConfig(req, res) {
154 154 }
155 155  
156 156 async function pageQueuesAndProviders(req, res) {
157   - res.end(await queuesAndProviders.dump);
  157 + res.end(await queuesAndProviders.dump());
158 158 }
159 159  
160 160 router.get('/', pageIndex);