Skip to content

Commit

Permalink
Merge pull request #450 from chirizxc/develop
Browse files Browse the repository at this point in the history
replace deprecated `disable_web_page_preview` with `LinkPreview`
  • Loading branch information
Tishka17 authored Dec 17, 2024
2 parents 8a30174 + 2df4042 commit e1e7661
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/aiogram_dialog/about.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

from aiogram_dialog.dialog import Dialog
from aiogram_dialog.widgets.kbd import Cancel, Keyboard, Start
from aiogram_dialog.widgets.link_preview import LinkPreview
from aiogram_dialog.widgets.text import Const, Jinja, Text
from aiogram_dialog.window import Window

Expand Down Expand Up @@ -37,12 +38,12 @@ def about_dialog():
"{% endfor %}"
"",
),
LinkPreview(is_disabled=True),
Cancel(Const("Ok")),
getter=metadata_getter,
preview_data=metadata_getter,
state=AiogramDialogStates.ABOUT,
parse_mode="html",
disable_web_page_preview=True,
),
)

Expand Down

0 comments on commit e1e7661

Please sign in to comment.