You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a code-signed Electron app to which I'm trying to add auto-update functionality.
I have set up a Lambda function at https://api.staging.my-domain.com/updater/checkUpdates/products/product-name/platforms/darwin?v=1.0.0 which returns a 200-status JSON response that looks like this:
I can paste that URL into my browser and it will download the file without a problem.
Despite this, I get the error Error: Update check failed. The server sent an invalid response. Try again later. which is coming from SQRLUpdater.m. Objective-C is looks quite foreign to me though so it's hard to understand what is causing the error to be thrown.
As far as I can tell, I am doing everything I should be to get updates working. Is there something else I need to be doing?
The text was updated successfully, but these errors were encountered:
@anaisbetts I was hoping that would fix it but unfortunately it's still failing with the same error even after trying the encoding. I removed the program from Applications and reinstalled it in case the old URL was getting cached somehow but that didn't help.
I have a code-signed Electron app to which I'm trying to add auto-update functionality.
I have set up a Lambda function at
https://api.staging.my-domain.com/updater/checkUpdates/products/product-name/platforms/darwin?v=1.0.0
which returns a 200-status JSON response that looks like this:I can paste that URL into my browser and it will download the file without a problem.
Despite this, I get the error
Error: Update check failed. The server sent an invalid response. Try again later.
which is coming from SQRLUpdater.m. Objective-C is looks quite foreign to me though so it's hard to understand what is causing the error to be thrown.As far as I can tell, I am doing everything I should be to get updates working. Is there something else I need to be doing?
The text was updated successfully, but these errors were encountered: