I'm unsure if I'm seeing a regression or an undocumented? change here.
I'm currently getting:
TypeError: undefined is not a function
at /mnt/Extra/home/dbolack/Projects/nodebb-plugin-rscloudfiles/index.js:203:4
Which maps to:
callback(null, {
url: rsCloudFilesCDNSecure + '/' + image.name,
name: image.name || ''
});
Which is equivalent to the current imgur plugins bit:
callback(null, {
url: data.link.replace('http:', 'https:'),
name: image.name || ''
});
Any ideas?