remove useless caching

This commit is contained in:
udf 2019-04-27 12:01:40 +02:00
parent a3981e0994
commit b98bc8eb02
Signed by: kate
GPG Key ID: F17AECB58C3A3096
1 changed files with 1 additions and 5 deletions

View File

@ -9,7 +9,6 @@ MULTI_EDIT_TIMEOUT = 80
REVERT_TIMEOUT = 2 * 60 * 60 REVERT_TIMEOUT = 2 * 60 * 60
CHANNEL_ID = 1040270887 CHANNEL_ID = 1040270887
DEFAULT_TITLE = "Programming & Tech" DEFAULT_TITLE = "Programming & Tech"
prog_tech_channel = None
rename_lock = asyncio.Lock() rename_lock = asyncio.Lock()
revert_task = None revert_task = None
@ -25,12 +24,9 @@ def fix_title(s):
async def edit_title(title): async def edit_title(title):
global prog_tech_channel
if prog_tech_channel is None:
prog_tech_channel = await borg.get_entity(CHANNEL_ID)
try: try:
await borg(EditTitleRequest( await borg(EditTitleRequest(
channel=prog_tech_channel, title=title channel=CHANNEL_ID, title=title
)) ))
except ChatNotModifiedError: except ChatNotModifiedError:
pass # Everything is ok pass # Everything is ok