diff --git a/package/share/ahriman/templates/build-status/package-info-modal.jinja2 b/package/share/ahriman/templates/build-status/package-info-modal.jinja2 index dd670524..6de5fee5 100644 --- a/package/share/ahriman/templates/build-status/package-info-modal.jinja2 +++ b/package/share/ahriman/templates/build-status/package-info-modal.jinja2 @@ -182,7 +182,12 @@ const description = response.find(Boolean); const packages = Object.keys(description.package.packages); const aurUrl = description.package.remote.web_url; - const upstreamUrls = Object.values(description.package.packages).map(single => single.url); + const upstreamUrls = Array.from( + new Set( + Object.values(description.package.packages) + .map(single => single.url) + ) + ).sort(); packageInfo.text(`${description.package.base} ${description.status.status} at ${new Date(1000 * description.status.timestamp).toISOStringShort()}`);