From 15b32f6e2fa0fee31f7a30125c8d066195a6be99 Mon Sep 17 00:00:00 2001 From: "Dr.Caduceus" Date: Mon, 13 Nov 2023 11:51:34 +0530 Subject: [PATCH] Bump to v1.5 --- bot/modules/static.py | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/bot/modules/static.py b/bot/modules/static.py index f3347e6..dfd9865 100644 --- a/bot/modules/static.py +++ b/bot/modules/static.py @@ -9,6 +9,21 @@ Add me to your channel to instantly generate links for any downloadable media. O - /log to get bot logs. (admin only!) """ +UserInfoText = \ +""" +**First Name:** +`{sender.first_name}` + +**Last Name:** +`{sender.last_name}` + +**User ID:** +`{sender.id}` + +**Username:** +`@{sender.username}` +""" + FileLinksText = \ """ **Download Link:** @@ -45,4 +60,9 @@ The link has been revoked. It may take some time for the changes to take effect. InvalidPayloadText = \ """ Invalid payload. -""" \ No newline at end of file +""" + +MediaTypeNotSupportedText = \ +""" +Sorry, this media type is not supported. +"""