Skip to content
Snippets Groups Projects
Unverified Commit 68cf1688 authored by こぴなたみぽ's avatar こぴなたみぽ Committed by GitHub
Browse files

Fix bug

アップロードのバグなのか知らないけどなぜか data が存在しない drive_file ドキュメントがまれにあることがわかったので
parent 3aa0980f
No related branches found
No related tags found
No related merge requests found
......@@ -19,7 +19,7 @@ const writeToGridFS = (bucket, buffer, ...rest) => new Promise((resolve, reject)
const migrateToGridFS = async (doc) => {
const id = doc._id
const buffer = doc.data.buffer
const buffer = doc.data ? doc.data.buffer : Buffer.from([0x00]) // アップロードのバグなのか知らないけどなぜか data が存在しない drive_file ドキュメントがまれにあることがわかったので
const created_at = doc.created_at
const name = doc.name
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment