forked from GitHub/dbot
that should fix the shitty regex too
This commit is contained in:
parent
ca5357ea49
commit
72ac41d632
@ -270,10 +270,10 @@ var reddit = function(dbot) {
|
|||||||
}.bind(this);
|
}.bind(this);
|
||||||
|
|
||||||
dbot.api.link.addHandler(this.name, // I'm so sorry, Jesus.
|
dbot.api.link.addHandler(this.name, // I'm so sorry, Jesus.
|
||||||
/https?:\/\/(www|pay\.)?reddit\.com\/r\/([a-zA-Z0-9]+)(\/comments\/([a-zA-Z0-9]+)?\/([a-zA-Z0-9_]+)\/([a-zA-Z0-9_]+)?)?/,
|
/https?:\/\/([a-z]+\.)?reddit\.com\/r\/([a-zA-Z0-9]+)(\/comments\/([a-zA-Z0-9]+)?\/([a-zA-Z0-9_]+)\/([a-zA-Z0-9_]+)?)?/,
|
||||||
rHandler);
|
rHandler);
|
||||||
dbot.api.link.addHandler(this.name + 'short',
|
dbot.api.link.addHandler(this.name + 'short',
|
||||||
/https?:\/\/(www\.)?redd.it\/([a-zA-Z0-9]+)/,
|
/https?:\/\/([a-z]\.)?redd.it\/([a-zA-Z0-9]+)/,
|
||||||
function(match, name, callback) {
|
function(match, name, callback) {
|
||||||
this.api.getPostInfo(match[2], function(info) {
|
this.api.getPostInfo(match[2], function(info) {
|
||||||
if(info) {
|
if(info) {
|
||||||
|
Loading…
Reference in New Issue
Block a user