From 6777d014f5dba1723f861022137d0aac785daeda Mon Sep 17 00:00:00 2001 From: goat <16760685+goaaats@users.noreply.github.com> Date: Wed, 15 Sep 2021 23:41:25 +0200 Subject: [PATCH] fix: add tick count to repo URLs --- Dalamud/Plugin/Internal/PluginRepository.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dalamud/Plugin/Internal/PluginRepository.cs b/Dalamud/Plugin/Internal/PluginRepository.cs index 7e0ec8b4d..90b7918db 100644 --- a/Dalamud/Plugin/Internal/PluginRepository.cs +++ b/Dalamud/Plugin/Internal/PluginRepository.cs @@ -75,7 +75,7 @@ namespace Dalamud.Plugin.Internal { Log.Information($"Fetching repo: {this.PluginMasterUrl}"); using var client = new HttpClient(); - using var response = await client.GetAsync(this.PluginMasterUrl); + using var response = await client.GetAsync(this.PluginMasterUrl + "?" + DateTime.Now.Ticks); var data = await response.Content.ReadAsStringAsync(); var pluginMaster = JsonConvert.DeserializeObject>(data);