mirror of
https://github.com/Leseratte10/acsm-calibre-plugin
synced 2026-08-03 16:32:01 -04:00
Don't fail if optional notification server is unavailable
This commit is contained in:
@@ -706,7 +706,18 @@ def performFulfillmentNotification(fulfillmentResultToken, forceOptional = False
|
||||
# Debug: Print notify request
|
||||
#print(doc_send)
|
||||
|
||||
code, msg = sendRequestDocuRC(doc_send, url)
|
||||
try:
|
||||
code, msg = sendRequestDocuRC(doc_send, url)
|
||||
except:
|
||||
if not critical:
|
||||
print("There was an error during an optional fulfillment notification:")
|
||||
import traceback
|
||||
traceback.print_exc()
|
||||
print("Continuing execution ...")
|
||||
continue
|
||||
else:
|
||||
print("Error during critical notification:")
|
||||
raise
|
||||
|
||||
try:
|
||||
msg = msg.decode("utf-8")
|
||||
|
||||
Reference in New Issue
Block a user