public void SetProgramAuthor(string author, string authorURL = null) { if (authorURL != null) { try { author = _requestUtils.Execute(new MilkyRequest(), HttpMethod.GET, authorURL).ToString(); } catch { } } _author = author; }