mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
fix: add tick count to repo URLs
This commit is contained in:
parent
cdfaa6ad21
commit
6777d014f5
1 changed files with 1 additions and 1 deletions
|
|
@ -75,7 +75,7 @@ namespace Dalamud.Plugin.Internal
|
||||||
{
|
{
|
||||||
Log.Information($"Fetching repo: {this.PluginMasterUrl}");
|
Log.Information($"Fetching repo: {this.PluginMasterUrl}");
|
||||||
using var client = new HttpClient();
|
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 data = await response.Content.ReadAsStringAsync();
|
||||||
|
|
||||||
var pluginMaster = JsonConvert.DeserializeObject<List<RemotePluginManifest>>(data);
|
var pluginMaster = JsonConvert.DeserializeObject<List<RemotePluginManifest>>(data);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue