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
GitLab keeps giving an error when you try to sync repo's.
Context
It seems they have changed the way the API responds. You need to edit this file
app/Classes/Gitlab.php on line 51
change
'is_private' => $repo->public == true,
to something like
'is_private' => $repo->visibility,
because the $repo->public is no longer returned it is now visibility that is returned.
Version used (e.g. PHP 7.1, HHVM 3):
Shared Hosted cPaned
The text was updated successfully, but these errors were encountered:
Detailed description
GitLab keeps giving an error when you try to sync repo's.
Context
It seems they have changed the way the API responds. You need to edit this file
app/Classes/Gitlab.php on line 51
change
'is_private' => $repo->public == true,
to something like
'is_private' => $repo->visibility,
because the $repo->public is no longer returned it is now visibility that is returned.
The text was updated successfully, but these errors were encountered: