From 81c925396e1ceb041566b184f03fedbb579ebf01 Mon Sep 17 00:00:00 2001 From: Gregor MacLennan Date: Tue, 29 Oct 2024 10:50:20 +0000 Subject: [PATCH] fix method name change --- src/fastify-plugins/blobs.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fastify-plugins/blobs.js b/src/fastify-plugins/blobs.js index 894595c6..34e41b9c 100644 --- a/src/fastify-plugins/blobs.js +++ b/src/fastify-plugins/blobs.js @@ -93,7 +93,7 @@ async function routes(fastify, options) { let blobStream try { - blobStream = await blobStore.createEntryReadStream(driveId, entry) + blobStream = await blobStore.createReadStreamFromEntry(driveId, entry) } catch (e) { reply.code(404) throw e