[vlc-commits] [Git][videolan/vlc][master] macosx: Fix null URL always being returned in VLCPlayQueueItem
Felix Paul Kühne (@fkuehne)
gitlab at videolan.org
Fri Aug 22 09:29:45 UTC 2025
Felix Paul Kühne pushed to branch master at VideoLAN / VLC
Commits:
5d7bf6f9 by Claudio Cambra at 2025-08-22T09:16:21+00:00
macosx: Fix null URL always being returned in VLCPlayQueueItem
Signed-off-by: Claudio Cambra <developer at claudiocambra.com>
- - - - -
1 changed file:
- modules/gui/macosx/playqueue/VLCPlayQueueItem.m
Changes:
=====================================
modules/gui/macosx/playqueue/VLCPlayQueueItem.m
=====================================
@@ -98,7 +98,7 @@ NSString *VLCPlaylistItemPasteboardType = @"org.videolan.vlc.playlistitemtype";
- (NSURL *)url
{
- if (_playlistItem) {
+ if (!_playlistItem) {
return nil;
}
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/5d7bf6f99ad7e122fc1b6708ed78f7fbb36e5293
--
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/5d7bf6f99ad7e122fc1b6708ed78f7fbb36e5293
You're receiving this email because of your account on code.videolan.org.
VideoLAN code repository instance
More information about the vlc-commits
mailing list