Browse Source

File attachments now work in form:// endpoint calls (#826)

pull/831/head
Chris Caron 2 years ago committed by GitHub
parent
commit
f7cc732c31
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      apprise/plugins/NotifyForm.py

6
apprise/plugins/NotifyForm.py

@ -267,12 +267,6 @@ class NotifyForm(NotifyBase):
self.logger.debug('I/O Exception: %s' % str(e))
return False
finally:
for file in files:
# Ensure all files are closed
if file[1][1]:
file[1][1].close()
# prepare Form Object
payload = {
# Version: Major.Minor, Major is only updated if the entire

Loading…
Cancel
Save