diff --git a/react/features/base/react/components/native/PagedList.js b/react/features/base/react/components/native/PagedList.js index bad5870b4..47d9359a3 100644 --- a/react/features/base/react/components/native/PagedList.js +++ b/react/features/base/react/components/native/PagedList.js @@ -147,7 +147,10 @@ class PagedList extends Component { let component; if (selectedPage && (component = selectedPage.component)) { - const { refresh } = component; + // react-i18n / react-redux wrap components and thus we cannot access + // the wrapped component's static methods directly. + const component_ = component.WrappedComponent || component; + const { refresh } = component_; refresh.call(component, this.props.dispatch, isInteractive); }