File tree 2 files changed +4
-0
lines changed
frontend/express/public/core/events/javascripts
2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change 1
1
## Version xx.xx.xx
2
2
3
3
Fixes:
4
+ - [ core] Fixed a bug causing events to not being loaded when there's an escaped character in the event name
4
5
- [ gridfs] fixes for moving to Promises
5
6
6
7
Dependencies:
Original file line number Diff line number Diff line change 886
886
return countlyAllEvents . service . fetchAllEventsData ( context , period )
887
887
. then ( function ( res ) {
888
888
if ( res ) {
889
+ if ( Array . isArray ( res . list ) ) {
890
+ res . list = res . list . map ( eventName => countlyCommon . unescapeHtml ( eventName ) ) ;
891
+ }
889
892
context . commit ( "setAllEventsData" , res ) ;
890
893
if ( ( ! context . state . selectedEventName ) || ( res . map && res . map [ context . state . selectedEventName ] && ! res . map [ context . state . selectedEventName ] . is_visible ) || ( res . list && res . list . indexOf ( context . state . selectedEventName ) === - 1 ) ) {
891
894
var appId = countlyCommon . ACTIVE_APP_ID ;
You can’t perform that action at this time.
0 commit comments