gatsby-source-notion-churnotion 1.0.22 → 1.0.23

Sign up to get free protection for your applications and to get access to all the features.
@@ -11,7 +11,7 @@ const processBlocks = async (blocks, actions, getCache, createNodeId, reporter)
11
11
  block.parent.includes(`http`)) {
12
12
  const match = block.parent.match(/\((https?:\/\/.*?)\)/);
13
13
  if (match) {
14
- const imageUrl = match[1].slice(1, match[1].length - 1);
14
+ const imageUrl = match[1];
15
15
  reporter.info(`[Image] got image > ${imageUrl}`);
16
16
  try {
17
17
  const fileNode = await (0, gatsby_source_filesystem_1.createRemoteFileNode)({
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "gatsby-source-notion-churnotion",
3
3
  "description": "Gatsby plugin that can connect with One Notion Database RECURSIVELY using official API",
4
- "version": "1.0.22",
4
+ "version": "1.0.23",
5
5
  "skipLibCheck": true,
6
6
  "license": "0BSD",
7
7
  "main": "./dist/gatsby-node.js",