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
log.Printf("could not fetch credentials for the app: %v", err)
this causes an exception on callback and we need to handle it properly. The callback from github sometimes look like this: /github/callback?installation_id=1234567890&setup_action=update
In this case we need to handle a missing code parameter and then lookup the installation_id from the db records then perform the update accordingly somehow TBD
The text was updated successfully, but these errors were encountered:
in some cases github when an app installation is being updated it decides to not send a
code
paramter which we expect to recieve here:digger/backend/controllers/github.go
Lines 1297 to 1305 in 1e88db8
this causes an exception on callback and we need to handle it properly. The callback from github sometimes look like this: /github/callback?installation_id=1234567890&setup_action=update
In this case we need to handle a missing code parameter and then lookup the installation_id from the db records then perform the update accordingly somehow TBD
The text was updated successfully, but these errors were encountered: