From 3e40bb19cdb79d685fd81cf494f42a5c3f5916ba Mon Sep 17 00:00:00 2001 From: Vincent Hou Date: Sat, 8 Feb 2020 13:30:56 +0800 Subject: [PATCH] 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. --- react/features/recent-list/functions.web.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/react/features/recent-list/functions.web.js b/react/features/recent-list/functions.web.js index 608fc48bc..aac587085 100644 --- a/react/features/recent-list/functions.web.js +++ b/react/features/recent-list/functions.web.js @@ -1,6 +1,6 @@ /* global interfaceConfig */ -import { parseURIString } from '../base/util'; +import { parseURIString, safeDecodeURIComponent } from '../base/util'; /** @@ -18,7 +18,7 @@ export function toDisplayableList(recentList) { date: item.date, duration: item.duration, time: [ item.date ], - title: parseURIString(item.conference).room, + title: safeDecodeURIComponent(parseURIString(item.conference).room), url: item.conference }; }));