You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you have a update feed that does not specify a BaseUrl attribute on the feed element, then the UpdateManager.BaseUrl property is left null. When the SimpleWebSource.GetData() method is invoked, it does:
if (!baseUrl.EndsWith("/")) baseUrl += "/";
Which results in a NullReferenceException.
At a minimum there should be a String.IsNullOrEmpty() check on baseUrl, but it might be a good idea to make the UpdateManager.BaseUrl property public so it an be set by the client code.
The text was updated successfully, but these errors were encountered:
If you have a update feed that does not specify a BaseUrl attribute on the feed element, then the UpdateManager.BaseUrl property is left null. When the SimpleWebSource.GetData() method is invoked, it does:
if (!baseUrl.EndsWith("/")) baseUrl += "/";
Which results in a NullReferenceException.
At a minimum there should be a String.IsNullOrEmpty() check on baseUrl, but it might be a good idea to make the UpdateManager.BaseUrl property public so it an be set by the client code.
The text was updated successfully, but these errors were encountered: