Fix simple icons URL

This commit is contained in:
Svilen Markov 2024-10-18 10:54:34 +01:00
parent 72f78f1c8d
commit bc8f17393a

View File

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