Change simple icons provider

This commit is contained in:
Svilen Markov
2024-10-16 10:58:09 +01:00
parent 6f8e576c9b
commit 18bb2d7501
2 changed files with 3 additions and 3 deletions

View File

@@ -183,7 +183,7 @@ func toSimpleIconIfPrefixed(icon string) (string, bool) {
}
icon = strings.TrimPrefix(icon, "si:")
icon = "https://cdnjs.cloudflare.com/ajax/libs/simple-icons/11.14.0/" + icon + ".svg"
icon = "https://cdn.jsdelivr.net/npm/simple-icons@latest/" + icon + ".svg"
return icon, true
}