[vlc-commits] [Git][videolan/vlc][master] macosx: decode bookmarked folder names in browse sidebar
Felix Paul Kühne (@fkuehne)
gitlab at videolan.org
Tue Sep 1 18:45:09 UTC 2026
Felix Paul Kühne pushed to branch master at VideoLAN / VLC
Commits:
7960b4d7 by Serhii Bykov at 2026-09-01T20:29:49+02:00
macosx: decode bookmarked folder names in browse sidebar
- - - - -
1 changed file:
- modules/gui/macosx/library/VLCLibrarySegment.m
Changes:
=====================================
modules/gui/macosx/library/VLCLibrarySegment.m
=====================================
@@ -859,7 +859,7 @@ NSArray<NSString *> *defaultBookmarkedLocations()
[remainingBookmarkedLocations removeObject:locationMrl];
continue;
}
- NSString * const locationName = locationMrl.lastPathComponent;
+ NSString * const locationName = [locationMrl.lastPathComponent stringByRemovingPercentEncoding];
VLCLibrarySegmentBookmarkedLocation * const descriptor =
[[VLCLibrarySegmentBookmarkedLocation alloc] initWithSegmentType:segmentType
name:locationName
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/7960b4d7b4af212f3c00322e73e92c03f370f723
--
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/7960b4d7b4af212f3c00322e73e92c03f370f723
You're receiving this email because of your account on code.videolan.org. Manage all notifications: https://code.videolan.org/-/profile/notifications | Help: https://code.videolan.org/help
More information about the vlc-commits
mailing list