Fix profile sorting to ignore case differences#8813
Closed
Muntazir3i wants to merge 3 commits intoFreeTubeApp:developmentfrom
Closed
Fix profile sorting to ignore case differences#8813Muntazir3i wants to merge 3 commits intoFreeTubeApp:developmentfrom
Muntazir3i wants to merge 3 commits intoFreeTubeApp:developmentfrom
Conversation
auto-merge was automatically disabled
March 16, 2026 09:21
Head branch was pushed to by a user without write access
auto-merge was automatically disabled
March 16, 2026 09:26
Head branch was pushed to by a user without write access
auto-merge was automatically disabled
March 17, 2026 13:20
Pull request was closed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Pull Request Type
Description
Profiles were previously sorted using direct string comparison:
This caused incorrect ordering when profile names contained different letter cases, because uppercase characters take precedence in ASCII sorting.
This change replaces the comparison with
localeCompareusing case-insensitive comparison so that profile names are sorted alphabetically regardless of case.The existing logic that ensures the main profile (
MAIN_PROFILE_ID) remains first is preserved.Screenshots
Before sorting:
After sorting:
Testing
Steps to verify the fix:
Profiles should now appear in alphabetical order ignoring case, while the main profile remains at the top.
Desktop
Additional context
This change only affects the sorting logic for profile names and does not modify any profile data or other functionality.