[FIX] In some cases, share extension doesn't load images (#1649)

This commit is contained in:
Diego Mello 2020-02-05 13:41:40 -03:00 committed by GitHub
parent 98f12bc058
commit 75c7f76c1f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 25 additions and 23 deletions

View File

@ -114,7 +114,7 @@ class ShareListView extends React.Component {
this.willBlurListener = props.navigation.addListener('willBlur', () => BackHandler.addEventListener('hardwareBackPress', this.handleBackPress));
}
async componentDidMount() {
componentDidMount() {
const { navigation, server } = this.props;
navigation.setParams({
initSearch: this.initSearch,
@ -122,6 +122,7 @@ class ShareListView extends React.Component {
search: this.search
});
setTimeout(async() => {
try {
const { value, type } = await ShareExtension.data();
let fileInfo = null;
@ -146,6 +147,7 @@ class ShareListView extends React.Component {
}
this.getSubscriptions(server);
}, 500);
}
componentWillReceiveProps(nextProps) {