added version to query string
This commit is contained in:
parent
c6bbc52631
commit
eefe44caa5
|
@ -30,7 +30,7 @@ namespace NzbDrone.Core.Update
|
||||||
|
|
||||||
public UpdatePackage GetLatestUpdate()
|
public UpdatePackage GetLatestUpdate()
|
||||||
{
|
{
|
||||||
var url = String.Format("{0}/v1/update/{1}?{2}", Services.RootUrl, _configFileProvider.Branch, BuildInfo.Version);
|
var url = String.Format("{0}/v1/update/{1}?version={2}", Services.RootUrl, _configFileProvider.Branch, BuildInfo.Version);
|
||||||
var update = JsonConvert.DeserializeObject<UpdatePackageAvailable>(_httpProvider.DownloadString(url));
|
var update = JsonConvert.DeserializeObject<UpdatePackageAvailable>(_httpProvider.DownloadString(url));
|
||||||
|
|
||||||
if (!update.Available) return null;
|
if (!update.Available) return null;
|
||||||
|
|
Loading…
Reference in New Issue