-
Notifications
You must be signed in to change notification settings - Fork 16
Fix list updating inifite loading #21
Fix list updating inifite loading #21
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good -- just an unintentional indenting change that needs to be fixed and then it can be merged.
}; | ||
broadcast: true, | ||
msg: message | ||
}; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like an unintentional change here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This was actually intended, makes more sense IMHO.
And sorry for the delay; GitHub notifications are still not being very helpful and alerting me when there is new activity. |
2d7e68e
to
91afc52
Compare
@nikrolls Just updated. I subscribed to watch this repo and receive notifications for all issues and PRs through email, but I believe you can change that in your account settings. |
Hmm, maybe I have some settings on my account causing an issue. I'll check it out. |
Thanks for the contribution! I'll update the releases tonight and get this out with it. |
In some cases the updating of lists seemed to hang and spit out an
handle is invalid
error. For me, this revolved around the broadcast method that seemed to fail in some cases. From trial and error, I found that most cases it fails when a port has nosender
object attached. This worked in most cases, but not all.Mozilla and MSDN have good docs on messaging, but as it works well in Chrome this seems to be Edge-specific (for which I couldn't find any docs).
Perhaps this is not the best solution, as we don't know the actual cause of the fail... But I'd like to argue to have this implement anyhow, as any weird error shouldn't stop the function from broadcasting the message.
Would fix #18. Both applying a new list selection and visually updating lists by showing the progress seem to work now.