I have found an issue with the uBlogsy rss razor macro. I am having an issue where the call to create the 'blogUrl' field is causing an exception. Looking at the code I am making the following recomendations:
1) use blogUrl only for the channel link and format directly from the Request.Url
string blogUrl = Request.Url.ToString();
2) create a new field called 'blogBase' getting just the authority of the Request.Url. This can be used for item links:
rss razor template issue
I have found an issue with the uBlogsy rss razor macro. I am having an issue where the call to create the 'blogUrl' field is causing an exception. Looking at the code I am making the following recomendations:
1) use blogUrl only for the channel link and format directly from the Request.Url
string blogUrl = Request.Url.ToString();
2) create a new field called 'blogBase' getting just the authority of the Request.Url. This can be used for item links:
Which version of uBlogsy and Umbraco are you using?
is working on a reply...