Maybe fix alias issue + add url testing logging

This commit is contained in:
hgw 2023-12-02 00:48:30 +11:00
parent bfddd4f3e9
commit 4c27bd5a1e
Signed by: hgw
SSH Key Fingerprint: SHA256:NQGxKc1SBxScBCFxfa0Mx7yzNpOieGL9WUOwyafNEU4
1 changed files with 2 additions and 1 deletions

3
bot.js
View File

@ -39,6 +39,7 @@ const isValidUrl = urlString=> {
'(\\:\\d+)?(\\/[-a-z\\d%_.~+]*)*'+ // validate port and path
'(\\?[;&a-z\\d%_.~+=-]*)?'+ // validate query string
'(\\#[-a-z\\d_]*)?$','i'); // validate fragment locator
consoleLog('[bot.isValidUrl] Testing URL: '+urlString)
return !!urlPattern.test(urlString);
}
@ -144,7 +145,7 @@ async function feed(chan, nick, provfeed, n) {
bot.say(chan, "You have no saved feeds")
return;
}
} else if (uconfig[nick].alias !== undefined ) { //Alias Lookup
} else if (uconfig[nick].alias[provfeed.toUpperCase()] !== undefined ) { //Alias Lookup
consoleLog('[bot.feed] Alias requested')
var provfeed = uconfig[nick].alias[provfeed.toUpperCase()]
openPostWorker(chan, "feed-preset", provfeed, n, nick);