Write file

main
Bob Mottram 2021-08-12 11:47:03 +01:00
parent 866a54437f
commit 0e268913f2
1 changed files with 2 additions and 2 deletions

View File

@ -50,14 +50,14 @@ def muteConversation(baseDir: str, nickname: str, domain: str,
conversationId: str) -> None:
"""Mutes the given conversation
"""
conversationDir = acctDir(baseDir, nickname, domain) + '/conversation'
conversationDir = acctDir(baseDir, nickname, domain) + '/conversation'
conversationFilename = \
conversationDir + '/' + conversationId.replace('/', '#')
if not os.path.isfile(conversationFilename):
return
if os.path.isfile(conversationFilename + '.muted'):
return
with open(conversationFilename + '.muted') as fp:
with open(conversationFilename + '.muted', 'w+') as fp:
fp.write('\n')