Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

LPS-77321 RSS Feed does not update modify content in correct refresh time #54534

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -37,7 +37,7 @@
* @author Eudaldo Alonso
*/
@Component(
configurationPid = "com.liferay.rss.web.configuration.RSSWebCacheConfiguration",
configurationPid = "com.liferay.rss.web.internal.configuration.RSSWebCacheConfiguration",
configurationPolicy = ConfigurationPolicy.OPTIONAL, immediate = true,
property = {
"com.liferay.portlet.add-default-resource=true",
Expand Down
4 changes: 2 additions & 2 deletions modules/test/poshi-runner/.gitrepo
Expand Up @@ -4,8 +4,8 @@
[subrepo]
autopull = true
cmdver = liferay
commit = 11a29929c29dad9b957e05ba8cd7a56585f04a26
commit = 4ed01148cfff4c0a84cadd89aa2b28945316a03d
mergebuttonmergecommits = false
mode = pull
parent = a20b88eb4c234d8e5ba38bfafaf9cdbd7a4255ba
parent = 9722e941bd8ead198a533fb8e6f078fd6560aa3d
remote = git@github.com:liferay/com-liferay-poshi-runner.git
Expand Up @@ -262,7 +262,9 @@ protected String createMacroReadableBlock(String content) {

sb.append(formattedContent.toString());

if (!content.trim().equals("")) {
String trimmedContent = content.trim();

if (!trimmedContent.equals("")) {
sb.append("\n");

sb.append(pad);
Expand Down