Skip to content
Snippets Groups Projects
Commit 353bbbe1 authored by Felix Paul Kühne's avatar Felix Paul Kühne
Browse files

VLCMedia: enforce parsing of the info we really need

parent 57a77ca6
No related branches found
No related tags found
No related merge requests found
......@@ -943,10 +943,13 @@ NSString *VLCMediaTracksInformationTextEncoding = @"encoding"; // NSString
{
if (!areOthersMetaFetched) {
areOthersMetaFetched = YES;
/* Force VLCMetaInformationTitle, that will trigger preparsing
* And all the other meta will be added through the libvlc event system */
[self fetchMetaInformationFromLibVLCWithType: VLCMetaInformationTitle];
[self fetchMetaInformationFromLibVLCWithType: VLCMetaInformationTitle];
[self fetchMetaInformationFromLibVLCWithType: VLCMetaInformationArtist];
[self fetchMetaInformationFromLibVLCWithType: VLCMetaInformationAlbum];
[self fetchMetaInformationFromLibVLCWithType: VLCMetaInformationDate];
[self fetchMetaInformationFromLibVLCWithType: VLCMetaInformationGenre];
[self fetchMetaInformationFromLibVLCWithType: VLCMetaInformationTrackNumber];
}
if (!isArtURLFetched) {
isArtURLFetched = YES;
......
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