We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e450b47 commit 3f7402bCopy full SHA for 3f7402b
source/views/help/wifi.js
@@ -51,7 +51,10 @@ export class ToolView extends React.Component<Props, State> {
51
52
this.setState(() => ({status: 'collecting', error: ''}))
53
const [position, device] = await Promise.all([
54
- getPosition().catch(bugsnag.notify),
+ getPosition().catch(error => {
55
+ bugsnag.notify(error)
56
+ return null
57
+ }),
58
collectData(),
59
])
60
this.setState(() => ({status: 'reporting'}))
0 commit comments