fix: youzan title (#3029)

This commit is contained in:
Cloud
2019-09-09 11:29:04 +08:00
committed by DIYgod
parent 2caec67d0d
commit f3057f77f5
+1 -1
View File
@@ -9,7 +9,7 @@ module.exports = async (ctx) => {
const shopresponse = await got.get(link);
const $ = cheerio.load(shopresponse.data);
const shopname = $('title').text();
const shopname = $('meta[name="keywords"]').attr('content');
const response = await got({
method: 'get',