Skip to content

Commit

Permalink
Fix #1782: Crash when trying to enable/disable packages
Browse files Browse the repository at this point in the history
  • Loading branch information
TeamSpen210 committed Jul 10, 2022
1 parent 28f495e commit 6413d6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/packageMan.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def apply_changes() -> None:
window.withdraw()
window.grab_release()
for pack, item in pack_items:
if pack.id != packages.CLEAN_PACKAGE:
if pack.id.casefold() != packages.CLEAN_PACKAGE:
pack.enabled = item.state
PACK_CONFIG.save_check()
utils.restart_app()
Expand Down

0 comments on commit 6413d6a

Please sign in to comment.