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
{{ message }}
This repository was archived by the owner on Nov 11, 2022. It is now read-only.
If you set combineDuplication to true and compileContent to true, combination isn't working. The reason is that content is being compared by reference, which works for strings but not with the result of $sce.trustAsHtml.
Current code in provide.js:90
if (_msg.content === msg.content &&
Should be:
if (_msg.content.toString() === msg.content.toString() &&
Probably need to add a check for undefined (if it is possible).
If you set combineDuplication to true and compileContent to true, combination isn't working. The reason is that content is being compared by reference, which works for strings but not with the result of $sce.trustAsHtml.
Current code in provide.js:90
if (_msg.content === msg.content &&
Should be:
if (_msg.content.toString() === msg.content.toString() &&
Probably need to add a check for undefined (if it is possible).