From 6376e72862a1b9aa088bd0649559283fb6cc0032 Mon Sep 17 00:00:00 2001 From: Kilian von Pflugk Date: Thu, 24 Oct 2024 22:48:12 +0200 Subject: [PATCH] switch to our new domain --- IntroSkipper/Plugin.cs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/IntroSkipper/Plugin.cs b/IntroSkipper/Plugin.cs index f58e388..8a5a90c 100644 --- a/IntroSkipper/Plugin.cs +++ b/IntroSkipper/Plugin.cs @@ -448,7 +448,8 @@ public class Plugin : BasePlugin, IHasWebPages List oldRepos = [ "https://raw.githubusercontent.com/intro-skipper/intro-skipper/master/manifest.json", - "https://raw.githubusercontent.com/jumoog/intro-skipper/master/manifest.json" + "https://raw.githubusercontent.com/jumoog/intro-skipper/master/manifest.json", + "https://manifest.intro-skipper.workers.dev/manifest.json" ]; // Access the current server configuration var config = serverConfiguration.Configuration; @@ -463,13 +464,13 @@ public class Plugin : BasePlugin, IHasWebPages pluginRepositories.RemoveAll(repo => repo != null && repo.Url != null && oldRepos.Contains(repo.Url)); // Add repository only if it does not exit - if (!pluginRepositories.Exists(repo => repo.Url == "https://manifest.intro-skipper.workers.dev/manifest.json")) + if (!pluginRepositories.Exists(repo => repo.Url == "https://manifest.intro-skipper.org/manifest.json")) { // Add the new repository to the list pluginRepositories.Add(new RepositoryInfo { Name = "intro skipper (automatically migrated by plugin)", - Url = "https://manifest.intro-skipper.workers.dev/manifest.json", + Url = "https://manifest.intro-skipper.org/manifest.json", Enabled = true, }); }