From ab32365c458074f73c8d4e7f6510ed803f235351 Mon Sep 17 00:00:00 2001 From: Christopher Snowhill Date: Fri, 17 Jun 2022 10:22:31 -0700 Subject: [PATCH] [PlaylistEntry] Fix a single warning Fix a warning about nullability of a class member. Signed-off-by: Christopher Snowhill --- Playlist/PlaylistEntry.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Playlist/PlaylistEntry.h b/Playlist/PlaylistEntry.h index 259e08f61..2a60fa7dc 100644 --- a/Playlist/PlaylistEntry.h +++ b/Playlist/PlaylistEntry.h @@ -64,7 +64,7 @@ @property(nonatomic) NSData *_Nullable albumArtInternal; @property(nonatomic) BOOL Unsigned; -@property(nonatomic) NSURL *URL; +@property(nonatomic) NSURL *_Nullable URL; - (void)setMetadata:(NSDictionary *_Nonnull)metadata;