diff options
Diffstat (limited to 'macosx/HBAudio.m')
-rw-r--r-- | macosx/HBAudio.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/macosx/HBAudio.m b/macosx/HBAudio.m index 1faae116e..be7df2465 100644 --- a/macosx/HBAudio.m +++ b/macosx/HBAudio.m @@ -285,8 +285,8 @@ NSString *HBAudioChangedNotification = @"HBAudioChangedNotification"; self = [super init]; decodeInt(_container); - decodeObject(_sourceTracks, NSMutableArray); - decodeObject(_tracks, NSMutableArray); + decodeCollectionOfObjects(_sourceTracks, NSArray, NSDictionary); + decodeCollectionOfObjects(_tracks, NSMutableArray, HBAudioTrack); for (HBAudioTrack *track in _tracks) { |