From 662ad2bf9216b8c48c9d1cdf200906f5fe476854 Mon Sep 17 00:00:00 2001 From: Jye Cusch Date: Fri, 14 Mar 2025 10:52:35 +1100 Subject: [PATCH] docs: fix incorrect python sdk topic subscription example --- docs/messaging.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/messaging.mdx b/docs/messaging.mdx index 4b915d8b0..f089deeb4 100644 --- a/docs/messaging.mdx +++ b/docs/messaging.mdx @@ -191,7 +191,7 @@ user_created_topic = topic("user-created") @user_created_topic.subscribe() async def updates_sub(ctx): - email = ctx.req.json['email'] + email = ctx.req.data['email'] send_welcome_email(email)