Skip to content
Snippets Groups Projects
Commit d65d5c2d authored by Rémy Coutable's avatar Rémy Coutable
Browse files

Merge branch 'feature/fix-14753' into 'master'

Fix #14753: Check if head is born before trying to detect main language

This MR makes sure that head exists before trying to detect the main language.
This prevents errors on repo's without a master branch.

Closes #14753

See merge request !3654
parents 0b8852d3 c8706865
No related branches found
No related tags found
1 merge request!3654Fix #14753: Check if head is born before trying to detect main language
Pipeline #
Loading
@@ -43,6 +43,9 @@ v 8.7.0 (unreleased)
Loading
@@ -43,6 +43,9 @@ v 8.7.0 (unreleased)
- API: Expose 'updated_at' for issue, snippet, and merge request notes (Robert Schilling) - API: Expose 'updated_at' for issue, snippet, and merge request notes (Robert Schilling)
- API: User can leave a project through the API when not master or owner. !3613 - API: User can leave a project through the API when not master or owner. !3613
   
v 8.6.6
- Fix error on language detection when repository has no HEAD (e.g., master branch). !3654 (Jeroen Bobbeldijk)
v 8.6.5 v 8.6.5
- Fix importing from GitHub Enterprise. !3529 - Fix importing from GitHub Enterprise. !3529
- Perform the language detection after updating merge requests in `GitPushService`, leading to faster visual feedback for the end-user. !3533 - Perform the language detection after updating merge requests in `GitPushService`, leading to faster visual feedback for the end-user. !3533
Loading
Loading
Loading
@@ -896,9 +896,9 @@ class Repository
Loading
@@ -896,9 +896,9 @@ class Repository
end end
   
def main_language def main_language
unless empty? return if empty? || rugged.head_unborn?
Linguist::Repository.new(rugged, rugged.head.target_id).language
end Linguist::Repository.new(rugged, rugged.head.target_id).language
end end
   
def avatar def avatar
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment