mirror of
https://github.com/davidarroyo1234/InstagramUnfollowers.git
synced 2026-04-26 05:15:52 +03:00
[GH-ISSUE #39] Debugging connection was closed. Reason: Render process gone. #21
Labels
No labels
bug
documentation
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/InstagramUnfollowers#21
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @KingPsychopath on GitHub (Nov 29, 2022).
Original GitHub issue: https://github.com/davidarroyo1234/InstagramUnfollowers/issues/39
Summary
At larger amounts of followings(500+) on Edge and Chrome the tool appears to halt and crash.
System Environment
AMD Ryzen 5950x
RTX 3080
64GB Ram
Edge Version 107.0.1418.52 (Official build) (64-bit)
Screenshot
How to Reproduce
Suggested Fix
The ability to pause the search until root cause is found; so that unfollowers can be removed in chunks rather than in bulk.
@tomleb3 commented on GitHub (Nov 30, 2022):
Might be a memory leak. Worth checking out.
Need to see how I can test this since I don't follow that many users on my private account.
In the meantime, if anyone else also faced this issue, please comment here and let us know so we can assess the severity of the situation.
@davidarroyo1234 commented on GitHub (Nov 30, 2022):
This is happening probably because its rendering 1000 user entities. This should be paginated. This same thing happen on the first version in the early dev one year ago. in console mode it was not happening because it was plain text i guess.
1 option could be to paginate 100 users per page. And optionally a search bar.
@tomleb3 commented on GitHub (Nov 30, 2022):
Oh I didn't know you've had this issue in the past.
But still, seems strange that a browser would struggle rendering a list of ~1k users.
Then again I might be wrong.
I'll try to reproduce somehow and see what I can find.
@tomleb3 commented on GitHub (Dec 4, 2022):
Was able to easily reproduce by looping through the results.
@davidarroyo1234 You were right, I guess it is too much for the browser.
Need to see how to manage this. Should be refactored with pagination/intersection-observer/tabs/etc..
In the mean time, the older version that outputs to console still works just fine for anyone who needs it.
Here's the link to that version:
github.com/davidarroyo1234/InstagramUnfollowers@84a0488a33Note to self: Add a ref to this version in the readme as well.
@davidarroyo1234 commented on GitHub (Dec 11, 2022):
@tomleb3 I'll start doing the pagination thing. Did you start something or can i start this whitout issue?
@tomleb3 commented on GitHub (Dec 11, 2022):
@davidarroyo1234 Nope, you can go ahead. I thought about starting to do it recently, but couldn't find the time.
@davidarroyo1234 commented on GitHub (Dec 11, 2022):
NP, i was asking to not do the work twice.
@davidarroyo1234 commented on GitHub (Dec 30, 2022):
Could you please check it again with the new update? Now should not crash due the new pagination integration.