Skip to content
Snippets Groups Projects

PlexParser: Fix PlexExtractToken returning nil

Merged Edgar Fouillet requested to merge edrflt/vlc-ios:fix_plex into master
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -158,7 +158,7 @@ static NSString *const kPlexVLCDeviceName = @"VLC for iOS";
token = [[NSArray arrayWithArray:_containerInfo] firstObject][@"token"];
}
return token;
return token ? token : @"";
}
#pragma mark - Parser
Loading