Skip to content

Commit c77bb7f

Browse files
fix: ci
1 parent 4985e0e commit c77bb7f

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

packages/notion-client/src/notion-api.ts

+5-2
Original file line numberDiff line numberDiff line change
@@ -237,14 +237,17 @@ export class NotionAPI {
237237
// console.log(block, source)
238238

239239
if (source) {
240-
if (source.includes('secure.notion-static.com') || source.includes('prod-files-secure')) {
240+
if (
241+
source.includes('secure.notion-static.com') ||
242+
source.includes('prod-files-secure')
243+
) {
241244
return {
242245
permissionRecord: {
243246
table: 'block',
244247
id: block.id
245248
},
246249
url: source
247-
};
250+
}
248251
}
249252

250253
return []

0 commit comments

Comments
 (0)