Skip to content
This repository has been archived by the owner on Aug 7, 2019. It is now read-only.

Fixed return of a cover into result. #83

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions OrigamiEngine.podspec
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
Pod::Spec.new do |s|
s.name = "OrigamiEngine"
s.version = "1.0.14"
s.version = "1.0.14.1"
s.summary = "Lightweight iOS/OSX audio engine with flac, cue, mp3, m4a, m3u support."
s.homepage = "https://github.com/ap4y/OrigamiEngine.git"
s.homepage = "https://github.com/delitestudio/OrigamiEngine.git"
s.license = 'MIT'
s.author = { "ap4y" => "[email protected]" }
s.source = { :git => "https://github.com/ap4y/OrigamiEngine.git", :tag => "1.0.14", :submodules => true }
s.source = { :git => "https://github.com/delitestudio/OrigamiEngine.git", :tag => "1.0.14.1", :submodules => true }
s.default_subspec = 'Core'
s.requires_arc = false
s.ios.deployment_target = '5.0'
Expand Down
4 changes: 2 additions & 2 deletions OrigamiEngine/Plugins/CoreAudioDecoder.m
Original file line number Diff line number Diff line change
Expand Up @@ -243,12 +243,12 @@ - (NSMutableDictionary *)metadataForFile:(AudioFileID)audioFile {
&dataSize,
&image);
if (image) {
[self.metadata setObject:image forKey:@"picture"];
[result setObject:image forKey:@"picture"];
CFRelease(image);
}

} else if ((image = [self imageDataFromID3Tag:audioFile])) {
[self.metadata setObject:image forKey:@"picture"];
[result setObject:image forKey:@"picture"];
}

return result;
Expand Down