Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo in adapter of webhookCallback #1164

Merged
merged 2 commits into from
Dec 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion site/docs/es/hosting/vercel.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ if (!token) throw new Error("Falta BOT_TOKEN.");

const bot = new Bot(token);

export default webhookCallback(bot, "std/http");
export default webhookCallback(bot, "https");
```

::: tip [Vercel Edge Functions](https://vercel.com/docs/functions) proporciona soporte limitado para grammY
Expand Down
2 changes: 1 addition & 1 deletion site/docs/hosting/vercel.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ if (!token) throw new Error("BOT_TOKEN is unset");

const bot = new Bot(token);

export default webhookCallback(bot, "std/http");
export default webhookCallback(bot, "https");
LWJerri marked this conversation as resolved.
Show resolved Hide resolved
```

::: tip [Vercel Edge Functions](https://vercel.com/docs/functions) provides limited support for grammY
Expand Down
2 changes: 1 addition & 1 deletion site/docs/id/hosting/vercel.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ if (!token) throw new Error("BOT_TOKEN belum diisi");

const bot = new Bot(token);

export default webhookCallback(bot, "std/http");
export default webhookCallback(bot, "https");
```

::: tip [Vercel Edge Functions](https://vercel.com/docs/functions) memiliki dukungan terbatas terhadap grammY
Expand Down
2 changes: 1 addition & 1 deletion site/docs/ru/hosting/vercel.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ if (!token) throw new Error("BOT_TOKEN не установлен");

const bot = new Bot(token);

export default webhookCallback(bot, "std/http");
export default webhookCallback(bot, "https");
```

::: tip [Vercel Edge Functions](https://vercel.com/docs/functions) обеспечивает ограниченную поддержку grammY
Expand Down
2 changes: 1 addition & 1 deletion site/docs/uk/hosting/vercel.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ if (!token) throw new Error("BOT_TOKEN не вказаний");

const bot = new Bot(token);

export default webhookCallback(bot, "std/http");
export default webhookCallback(bot, "https");
```

::: tip [Vercel Edge Functions](https://vercel.com/docs/functions) надає обмежену підтримку grammY
Expand Down
2 changes: 1 addition & 1 deletion site/docs/zh/hosting/vercel.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ if (!token) throw new Error("BOT_TOKEN is unset");

const bot = new Bot(token);

export default webhookCallback(bot, "std/http");
export default webhookCallback(bot, "https");
```

::: tip [Vercel Edge Functions](https://vercel.com/docs/functions) 为 grammY 提供了有限支持
Expand Down
Loading