File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
plugins/crashes/frontend/public/javascripts Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 11## Version 24.05.x
22Features:
33- [ dashboards] Added the option to set a refresh rate for dashboards, allowing data to update more frequently for selected dashboards.
4+ - [ crashed] Fix unescaped SDK logs
45
56## Version 24.05.29
67Fixes:
Original file line number Diff line number Diff line change @@ -808,6 +808,9 @@ function transformAppVersion(inpVersion) {
808808 }
809809
810810 crashgroupJson . data . forEach ( function ( crash , crashIndex ) {
811+ // unescape logs
812+ crashgroupJson . data [ crashIndex ] . logs = countlyCommon . unescapeHtml ( crash . logs ) ;
813+
811814 if ( crash . uid in userIds ) {
812815 userIds [ crash . uid ] . push ( crashIndex ) ;
813816 }
@@ -1327,4 +1330,4 @@ function transformAppVersion(inpVersion) {
13271330 return resultQuery ;
13281331 } ;
13291332
1330- } ( window . countlyCrashes = window . countlyCrashes || { } ) ) ;
1333+ } ( window . countlyCrashes = window . countlyCrashes || { } ) ) ;
You can’t perform that action at this time.
0 commit comments