diff --git a/src/outbox.ts b/src/outbox.ts index a10a22b..a4c8f28 100644 --- a/src/outbox.ts +++ b/src/outbox.ts @@ -79,7 +79,7 @@ function proxyDO(targetDO: TOB_DurableObject & TM_DurableObject, storage: Durabl } else { const value = (target as any)[prop] if (typeof value === 'function') { - value.bind(receiver) + return value.bind(receiver) } return value }