diff --git a/react/features/recent-list/functions.web.js b/react/features/recent-list/functions.web.js index 1c8a67d6e..19e020871 100644 --- a/react/features/recent-list/functions.web.js +++ b/react/features/recent-list/functions.web.js @@ -12,7 +12,7 @@ import { parseURIString, safeDecodeURIComponent } from '../base/util'; */ export function toDisplayableList(recentList) { return ( - recentList.reverse() + [ ...recentList ].reverse() .map(item => { return { date: item.date,