From f8d850b3bec5db7eaee7933733748f10fa5f3690 Mon Sep 17 00:00:00 2001 From: Bjorn Lammers Date: Mon, 29 Aug 2022 11:19:15 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=9B=20Move=20WalkxHub=20>=20WalkxCode?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/tools/addToHomarr.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tools/addToHomarr.ts b/src/tools/addToHomarr.ts index da421dd4e..bb1945014 100644 --- a/src/tools/addToHomarr.ts +++ b/src/tools/addToHomarr.ts @@ -3,7 +3,7 @@ import { Config, MatchingImages, ServiceType, tryMatchPort } from './types'; async function MatchIcon(name: string) { const res = await fetch( - `https://cdn.jsdelivr.net/gh/walkxhub/dashboard-icons/png/${name + `https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons/png/${name .replace(/\s+/g, '-') .toLowerCase()}.png` ); @@ -30,7 +30,7 @@ export function tryMatchService(container: Dockerode.ContainerInfo | undefined) id: container.Id, type: tryMatchType(container.Image), url: `localhost${port ? `:${port}` : ''}`, - icon: `https://cdn.jsdelivr.net/gh/walkxhub/dashboard-icons/png/${name + icon: `https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons/png/${name .replace(/\s+/g, '-') .toLowerCase()}.png`, };