Skip to content
Snippets Groups Projects
Commit 55acd54c authored by Marvin Scholz's avatar Marvin Scholz
Browse files

macosx: Fix trying to load playlist as an SD

The sdtype of VLCSourceListItem was not correctly initialized to -1,
which caused the macosx interface trying to load the playlist like am
SD module, which does not work.
parent 8d699d9c
No related branches found
No related tags found
No related merge requests found
......@@ -25,4 +25,14 @@
@implementation VLCSourceListItem
- (id)init
{
self = [super init];
if (self) {
_sdtype = -1; // No SD type set
}
return self;
}
@end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment