We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 034d40d commit 9380b90Copy full SHA for 9380b90
1 file changed
backend/user/notifications.py
@@ -104,7 +104,7 @@ def get_client(is_dev):
104
auth_key_path = (
105
f"/app/secrets/notifications/ios{'/dev/apns-dev' if is_dev else '/prod/apns-prod'}.pem"
106
)
107
- return APNsClient(credentials=auth_key_path, use_sandbox=is_dev)
+ return APNsClient(auth_key_path, use_sandbox=is_dev)
108
109
def __init__(self, is_dev=False):
110
try:
0 commit comments