From 0220e4391de553ffaf4fca2aae918148b4eac642 Mon Sep 17 00:00:00 2001 From: goat <16760685+goaaats@users.noreply.github.com> Date: Mon, 23 Aug 2021 14:37:03 +0200 Subject: [PATCH] hardcode main repo to api4 until release --- Dalamud/Plugin/Internal/PluginRepository.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dalamud/Plugin/Internal/PluginRepository.cs b/Dalamud/Plugin/Internal/PluginRepository.cs index d90efaee8..b21f61b51 100644 --- a/Dalamud/Plugin/Internal/PluginRepository.cs +++ b/Dalamud/Plugin/Internal/PluginRepository.cs @@ -14,7 +14,8 @@ namespace Dalamud.Plugin.Internal /// internal partial class PluginRepository { - private const string DalamudPluginsMasterUrl = "https://raw.githubusercontent.com/goatcorp/DalamudPlugins/master/pluginmaster.json"; + // TODO: Change back to master after api4 release + private const string DalamudPluginsMasterUrl = "https://raw.githubusercontent.com/goatcorp/DalamudPlugins/api4/pluginmaster.json"; private static readonly ModuleLog Log = new("PLUGINR");