Expand my Community achievements bar.

Dive into Adobe Summit 2024! Explore curated list of AEM sessions & labs, register, connect with experts, ask questions, engage, and share insights. Don't miss the excitement.

In AEM communities, if we create a new blog with message of length greater than 512, it appends junk sentences in the message and breaks the UI.

Avatar

Level 2

In AEM communities, if we create a new blog with message of length greater than 512, it appends junk sentences in the message and breaks the UI.

3 Replies

Avatar

Administrator

Checking this with AEM Communities experts!!



Kautuk Sahni

Avatar

Employee

Hi pankajs52169461​ ,

Can you please confirm which srp are you using and what version of AEM are you on ? If you are using dsrp , then a similar issue has been fixed and the fix will be delivered as a part of 6.3.2.1 cfp .

Avatar

Level 2

I am using DSRP and AEM 6.2.

I fixed the issue.

The issue is in class "com.adobe.cq.social.datastore.rdb.impl.DSRPUtil.java" that belongs to JAR "cq-social-rdb-provider-1.1.19.jar".

In "populateBlob" method, I replaced some part of code with below line:

String cqdata = trimNull(IOUtils.toString(blobStream, "UTF-8"));

and it worked.