Skip to content

Commit

Permalink
Merge branch 'master' into 8716-in-progress
Browse files Browse the repository at this point in the history
  • Loading branch information
repo-ranger[bot] committed Dec 15, 2022
2 parents 4b69f5d + a276770 commit ff5930c
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions services/pypi/pypi-helpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,16 @@ function getLicenses(packageData) {
const {
info: { license },
} = packageData

/*
The .license field may either contain
- a short license description (e.g: 'MIT' or 'GPL-3.0') or
- the full text of a license
but there is nothing in the response that tells us explicitly.
We have to make an assumption based on the length.
See https://github.com/badges/shields/issues/8689 and
https://github.com/badges/shields/pull/8690 for more info.
*/
if (license && license.length < 40) {
return [license]
} else {
Expand Down

0 comments on commit ff5930c

Please sign in to comment.