Browse Source

fixed the encoded tiltle issue in chinese

Checked the code of react.native part, there's no issue by using safeDecodeURIComponent.
So fixed it in same way.
j8
Vincent Hou 5 years ago
parent
commit
3e40bb19cd
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      react/features/recent-list/functions.web.js

+ 2
- 2
react/features/recent-list/functions.web.js View File

1
 /* global interfaceConfig */
1
 /* global interfaceConfig */
2
 
2
 
3
-import { parseURIString } from '../base/util';
3
+import { parseURIString, safeDecodeURIComponent } from '../base/util';
4
 
4
 
5
 
5
 
6
 /**
6
 /**
18
                     date: item.date,
18
                     date: item.date,
19
                     duration: item.duration,
19
                     duration: item.duration,
20
                     time: [ item.date ],
20
                     time: [ item.date ],
21
-                    title: parseURIString(item.conference).room,
21
+                    title: safeDecodeURIComponent(parseURIString(item.conference).room),
22
                     url: item.conference
22
                     url: item.conference
23
                 };
23
                 };
24
             }));
24
             }));

Loading…
Cancel
Save