mirror of
https://github.com/davidarroyo1234/InstagramUnfollowers.git
synced 2026-04-25 21:05:49 +03:00
[GH-ISSUE #253] The select all button is not working anymore #317
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#317
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 @leonardo73-max on GitHub (Oct 25, 2025).
Original GitHub issue: https://github.com/davidarroyo1234/InstagramUnfollowers/issues/253
Hi there, the select all button is not working anymore, tried both on Chromium and Chrome
@davidarroyo1234 commented on GitHub (Nov 1, 2025):
Did the process end or pause? if its still running you will not be able to select all
@leonardo73-max commented on GitHub (Nov 2, 2025):
the search process ended but the top violet bar gets stuck at the end.
If anyone is interested, I found a quick fix for the “Select all” checkboxes not working when the scan never reaches 100%.
When the scan stalls (progress bar < 100%), the two header checkboxes stay disabled, so you can’t check “Select all on this page” or “Select all”.
“Select all on this page” checkbox
Find:
title:"Select all on this page",type:"checkbox",disabled:n.percentage<100&&!a,checked:n.selectedResults.length===(0,c.getUsersForDisplay)(n.results,n.whitelistedResults,n.currentTab,n.searchTerm,n.filter).length,className:"toggle-all-checkbox",onClick:i
Replace with:
title:"Select all on this page",type:"checkbox",disabled:!1,checked:(function(){var e=(0,c.getCurrentPageUnfollowers)((0,c.getUsersForDisplay)(n.results,n.whitelistedResults,n.currentTab,n.searchTerm,n.filter),n.page);return e.length>0&&e.every(function(e){return-1!==n.selectedResults.indexOf(e)})})(),className:"toggle-all-checkbox",onClick:i
"Select all” checkbox
Find:
title:"Select all",type:"checkbox",disabled:n.percentage<100&&!a,checked:n.selectedResults.length===(0,c.getUsersForDisplay)(n.results,n.whitelistedResults,n.currentTab,n.searchTerm,n.filter).length,className:"toggle-all-checkbox",onClick:l
Replace with:
title:"Select all",type:"checkbox",disabled:!1,checked:(function(){var e=(0,c.getUsersForDisplay)(n.results,n.whitelistedResults,n.currentTab,n.searchTerm,n.filter);return e.length>0&&e.every(function(e){return-1!==n.selectedResults.indexOf(e)})})(),className:"toggle-all-checkbox",onClick:l
Removes the hard disable so the header checkboxes work even if scanning isn’t complete and gets stuck at the end.
After this, the two header checkboxes work reliably even if the scan gets stuck before 100%, which happens quite often lately
@agusdimarioUCC commented on GitHub (Nov 6, 2025):
same issue here, can't "select all" because the progress bar isn't complete even after the search is finished
@agusdimarioUCC commented on GitHub (Nov 6, 2025):
thanks!
@Kl4rkx commented on GitHub (Dec 7, 2025):
Thanks for reporting this! The issue with the "Select All" button has been fixed in afd6141. It should now work correctly on both Chromium and Chrome.