We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9bda91 commit 573fc8aCopy full SHA for 573fc8a
express/frontend/src/lib/ioBroker.ts
@@ -29,14 +29,14 @@ export type TranslatedText = Record<string, string>;
29
30
export const getLatest = AsyncCache.of(async () => {
31
const result = await axios.get<LatestAdapters>(
32
- "https://download.iobroker.net/sources-dist-latest.json",
+ "https://iobroker.live/repo/sources-dist-latest.json",
33
);
34
return result.data;
35
});
36
37
export const getStable = AsyncCache.of(async () => {
38
const result = await axios.get<StableAdapters>(
39
- "https://download.iobroker.net/sources-dist.json",
+ "https://iobroker.live/repo/sources-dist.json",
40
41
42
0 commit comments