Fix freeze/crash when 1:1 calling (#8057)

* Fix freeze/crash when 1:1 calling

Don't log call feed objects because they reference the client and
it causes the client to get logged too.

* Log purpose too
This commit is contained in:
David Baker 2022-03-15 13:52:22 +00:00 committed by GitHub
parent 744eeb53fe
commit cc9651089e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 2 deletions

View file

@ -93,7 +93,10 @@ export default class AudioFeed extends React.Component<IProps, IState> {
// load() explicitly, it shouldn't be a problem. - Dave
await element.load();
} catch (e) {
logger.info("Failed to play media element with feed", this.props.feed, e);
logger.info(
`Failed to play media element with feed for userId ` +
`${this.props.feed.userId} with purpose ${this.props.feed.purpose}`, e,
);
}
}

View file

@ -138,7 +138,10 @@ export default class VideoFeed extends React.PureComponent<IProps, IState> {
// load() explicitly, it shouldn't be a problem. - Dave
await element.play();
} catch (e) {
logger.info("Failed to play media element with feed", this.props.feed, e);
logger.info(
`Failed to play media element with feed for userId ` +
`${this.props.feed.userId} with purpose ${this.props.feed.purpose}`, e,
);
}
}