Skip to content
This repository was archived by the owner on Feb 26, 2020. It is now read-only.

Commit 050c233

Browse files
committed
Some quick error cleanup.
1 parent 3865562 commit 050c233

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

node-server/app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ function listTasks(req, res, next) {
183183
}
184184

185185
if (!data.length) {
186-
log.warn(err, "There is no tasks in the database. Did you initalize the database as stated in the README?");
186+
log.warn(err, "There is no tasks in the database. Add one!");
187187
}
188188

189189
if (!owner) {

node-server/config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Don't commit this file to your public repos. This config is for first-run
22
exports.creds = {
33
mongoose_auth_local: 'mongodb://localhost/tasklist', // Your mongo auth uri goes here
4-
audience: 'https://localhost:8888', // the Audience is the App URL when you registered the application.
4+
audience: 'http://localhost:8888/', // the Audience is the App URL when you registered the application.
55
identityMetadata: 'https://login.microsoftonline.com/hypercubeb2c.onmicrosoft.com/.well-known/openid-configuration?p=b2c_1_B2CSI' // Replace the text after p= with your specific policy.
66
};

0 commit comments

Comments
 (0)