fix: add tick count to repo URLs

This commit is contained in:
goat 2021-09-15 23:41:25 +02:00
parent cdfaa6ad21
commit 6777d014f5
No known key found for this signature in database
GPG key ID: F18F057873895461

View file

@ -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<List<RemotePluginManifest>>(data);