chore: cleanup repository reference (#1921)

Signed-off-by: Ludovic Ortega <ludovic.ortega@adminafk.fr>
This commit is contained in:
Ludovic Ortega
2025-10-04 19:13:13 +03:00
committed by GitHub
parent afeb34f368
commit 5c0a9690e1
13 changed files with 33 additions and 33 deletions

View File

@@ -7,7 +7,7 @@ export const JellyseerrVersion = () => {
async function fetchVersion() {
try {
const response = await fetch(
'https://raw.githubusercontent.com/Fallenbagel/jellyseerr/main/package.json'
'https://raw.githubusercontent.com/fallenbagel/jellyseerr/main/package.json'
);
const data = await response.json();
@@ -36,7 +36,7 @@ export const NixpkgVersion = () => {
const unstableUrl =
'https://raw.githubusercontent.com/NixOS/nixpkgs/refs/heads/nixos-unstable/pkgs/by-name/je/jellyseerr/package.nix';
const stableUrl =
'https://raw.githubusercontent.com/NixOS/nixpkgs/refs/heads/nixos-24.11/pkgs/servers/jellyseerr/default.nix';
'https://raw.githubusercontent.com/NixOS/nixpkgs/refs/heads/nixos-25.05/pkgs/by-name/je/jellyseerr/package.nix';
const [unstableResponse, stableResponse] = await Promise.all([
fetch(unstableUrl),