From c3c7667c17203e49f78c4ca7cbb657facd7910e6 Mon Sep 17 00:00:00 2001 From: Isaac Abadi Date: Thu, 13 Aug 2020 18:34:57 -0400 Subject: [PATCH] Added quotations to existing sub error message --- backend/subscriptions.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/subscriptions.js b/backend/subscriptions.js index 097eb50..d14169b 100644 --- a/backend/subscriptions.js +++ b/backend/subscriptions.js @@ -41,7 +41,7 @@ async function subscribe(sub, user_uid = null) { url_exists = !!db.get('subscriptions').find({url: sub.url}).value(); if (!sub.name && url_exists) { - logger.error(`Sub with the same URL already exists -- please provide a custom name for this new subscription.`); + logger.error(`Sub with the same URL "${sub.url}" already exists -- please provide a custom name for this new subscription.`); result_obj.error = 'Subcription with URL ' + sub.url + ' already exists! Custom name is required.'; resolve(result_obj); return;