From 64c243fb2abf2ba088a575d6b2edda77df8ebb40 Mon Sep 17 00:00:00 2001 From: oxmc <67136658+oxmc@users.noreply.github.com> Date: Sat, 31 Dec 2022 03:56:01 -0800 Subject: [PATCH] Update AssetsDownloader.cs --- Assets/Scripts/AssetsDownloader.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Assets/Scripts/AssetsDownloader.cs b/Assets/Scripts/AssetsDownloader.cs index 891bf9b..79fc7a8 100644 --- a/Assets/Scripts/AssetsDownloader.cs +++ b/Assets/Scripts/AssetsDownloader.cs @@ -29,9 +29,9 @@ namespace QuestAppLauncher const string TempDownloadFileExtention = ".tmp_download"; // GitHub API url - string GithubApiUrl = @"http://api.github.com/"; + public string GithubApiUrl = @"http://api.github.com/"; - string isorg = true; + public bool isorg = true; // Rate limit in minutes const int RateLimitInMins = 5;