Skip to content

Commit 0deafe7

Browse files
author
nvisionative
authoredApr 13, 2019
Correct issue with acquiring online packages and storing locally (#212)
1 parent 643ce35 commit 0deafe7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎nvQuickSite/Controllers/PackageController.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ private static IEnumerable<Package> GetRemotePackages()
5555
WebClient client = new WebClient();
5656
try
5757
{
58-
var url = "https://github.com/nvisionative/nvQuickSite/blob/master/data/packages.json";
58+
var url = "https://github.com/nvisionative/nvQuickSite/raw/master/nvQuickSite/data/packages.json";
5959
string result = client.DownloadString(url);
6060
var res = Newtonsoft.Json.JsonConvert.DeserializeObject<IEnumerable<Package>>(result);
6161
return res;

0 commit comments

Comments
 (0)