From bacfae922aced3bbf775c61db66b016163d10b0d Mon Sep 17 00:00:00 2001 From: Dong Nguyen Date: Mon, 19 Sep 2022 19:46:04 +0700 Subject: [PATCH] Update examples --- examples/node-oembed-parser/index.js | 2 +- examples/tsnode-oembed-parser/index.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/node-oembed-parser/index.js b/examples/node-oembed-parser/index.js index fd51a4b..cc97842 100644 --- a/examples/node-oembed-parser/index.js +++ b/examples/node-oembed-parser/index.js @@ -19,7 +19,7 @@ app.get('/', async (req, res) => { const data = await extract(url) return res.json({ error: 0, - message: 'article has been extracted successfully', + message: 'oembed data has been extracted successfully', data, meta }) diff --git a/examples/tsnode-oembed-parser/index.ts b/examples/tsnode-oembed-parser/index.ts index dfa8f64..6b1ecd9 100644 --- a/examples/tsnode-oembed-parser/index.ts +++ b/examples/tsnode-oembed-parser/index.ts @@ -19,7 +19,7 @@ app.get('/', async (req, res) => { const data = await extract(url) return res.json({ error: 0, - message: 'article has been extracted successfully', + message: 'oembed data has been extracted successfully', data, meta })