Skip to content

Commit

Permalink
Fix perpetual loading issue (evsar3#148) probably
Browse files Browse the repository at this point in the history
  • Loading branch information
TheKingEagle committed Dec 31, 2022
1 parent d733032 commit 7fb9343
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/renderer/components/MainWindow/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -102,13 +102,13 @@ export default {
connect (conn) {
conn.status = 'connecting'
console.log('CONNECT REQUEST CONN MP: ', conn.mountPoint)
const connect = c => {
ProcessManager.create(c).then(pid => {
conn.pid = pid
conn.status = 'connected'
this.updateConnectionList()
// this.updateConnectionList()
// OK why is this fixing that issue?
}).catch(error => {
conn.status = 'disconnected'
Expand Down

1 comment on commit 7fb9343

@TheKingEagle
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Temporary until digging deeper into the root of it.

Please sign in to comment.