Dr.Caduceus commited on
Commit
15b32f6
·
unverified ·
1 Parent(s): 84f4e25

Bump to v1.5

Browse files
Files changed (1) hide show
  1. bot/modules/static.py +21 -1
bot/modules/static.py CHANGED
@@ -9,6 +9,21 @@ Add me to your channel to instantly generate links for any downloadable media. O
9
  - /log to get bot logs. (admin only!)
10
  """
11
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
12
  FileLinksText = \
13
  """
14
  **Download Link:**
@@ -45,4 +60,9 @@ The link has been revoked. It may take some time for the changes to take effect.
45
  InvalidPayloadText = \
46
  """
47
  Invalid payload.
48
- """
 
 
 
 
 
 
9
  - /log to get bot logs. (admin only!)
10
  """
11
 
12
+ UserInfoText = \
13
+ """
14
+ **First Name:**
15
+ `{sender.first_name}`
16
+
17
+ **Last Name:**
18
+ `{sender.last_name}`
19
+
20
+ **User ID:**
21
+ `{sender.id}`
22
+
23
+ **Username:**
24
+ `@{sender.username}`
25
+ """
26
+
27
  FileLinksText = \
28
  """
29
  **Download Link:**
 
60
  InvalidPayloadText = \
61
  """
62
  Invalid payload.
63
+ """
64
+
65
+ MediaTypeNotSupportedText = \
66
+ """
67
+ Sorry, this media type is not supported.
68
+ """