macosx: Add parentheses to representedItem in informationwindowcontroller

Signed-off-by: Claudio Cambra <developer@claudiocambra.com>
This commit is contained in:
Claudio Cambra 2024-04-20 14:49:39 +08:00 committed by Jean-Baptiste Kempf
parent 58ec5cfdc7
commit b0162f06e2
1 changed files with 1 additions and 1 deletions

View File

@ -264,7 +264,7 @@ _##field##TextField.delegate = self
- (void)setRepresentedInputItem:(VLCInputItem *)representedInputItem
{
_representedInputItems = representedInputItem == nil ? @[] : @[representedInputItem];
_representedInputItems = (representedInputItem == nil) ? @[] : @[representedInputItem];
_artwork = [VLCLibraryImageCache thumbnailForInputItem:representedInputItem];
[self updateRepresentation];
}