1
0
mirror of https://github.com/simple-icons/simple-icons.git synced 2024-12-26 01:13:41 +02:00

Remove '.html' extension for SPDX license urls (#5412)

This commit is contained in:
Álvaro Mondéjar 2021-04-15 18:33:25 +02:00 committed by GitHub
parent d2c4d0d7f5
commit 92006ed23e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -45,7 +45,7 @@ function licenseToObject(license) {
}
if (license.url === undefined) {
license.url = `https://spdx.org/licenses/${license.type}.html`;
license.url = `https://spdx.org/licenses/${license.type}`;
}
return license;
}