Skip to content

Commit 0754d66

Browse files
authored
Merge pull request #4 from CodeXBotz/shahsad-klr-patch-1
Fixed Start Message Spelling
2 parents 5f3f2ba + 6a1a635 commit 0754d66

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
},
3333
"START_MESSAGE": {
3434
"description": "Optional: start message of bot, use HTML parsemode format",
35-
"value": "Hello {firstname}\n\nI can store private files in Specified Channel and other users can acess it from special link."
35+
"value": "Hello {firstname}\n\nI can store private files in Specified Channel and other users can access it from special link."
3636
},
3737
"ADMINS": {
3838
"description": "A space separated list of user_ids of Admins, they can only create links",

config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
TG_BOT_WORKERS = int(os.environ.get("TG_BOT_WORKERS", "4"))
1616

17-
START_MSG = os.environ.get("START_MESSAGE", "Hello {firstname}\n\nI can store private files in Specified Channel and other users can acess it from special link.")
17+
START_MSG = os.environ.get("START_MESSAGE", "Hello {firstname}\n\nI can store private files in Specified Channel and other users can access it from special link.")
1818
try:
1919
ADMINS=[]
2020
for x in (os.environ.get("ADMINS", "").split()):

0 commit comments

Comments
 (0)