Only write to indexes once

main
Bob Mottram 2020-12-29 17:56:42 +00:00
parent 3554bf1c20
commit cce7941b39
1 changed files with 3 additions and 2 deletions

View File

@ -1979,6 +1979,7 @@ def inboxUpdateIndex(boxname: str, baseDir: str, handle: str,
try:
with open(indexFilename, 'r+') as indexFile:
content = indexFile.read()
if destinationFilename + '\n' not in content:
indexFile.seek(0, 0)
indexFile.write(destinationFilename + '\n' + content)
return True