From ee8a456f014ba922c68e7e69d6cfe5c96516b5a9 Mon Sep 17 00:00:00 2001 From: Wojciech Nagrodzki <278594+wnagrodzki@users.noreply.github.com> Date: Tue, 30 Apr 2013 16:16:24 +0200 Subject: [PATCH] Bug fix: file URL was not created properly --- iNapi/Classes/Helpers/INPMovieFilter.m | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/iNapi/Classes/Helpers/INPMovieFilter.m b/iNapi/Classes/Helpers/INPMovieFilter.m index ab49f13..63b3dfe 100644 --- a/iNapi/Classes/Helpers/INPMovieFilter.m +++ b/iNapi/Classes/Helpers/INPMovieFilter.m @@ -57,8 +57,7 @@ - (BOOL)fileConformsToMovieUTI:(NSString *)filePath { - NSString* targetFilePath_converted = [filePath stringByAddingPercentEscapesUsingEncoding: NSUTF8StringEncoding]; - CFURLRef anUrl = (__bridge CFURLRef)[NSURL URLWithString: targetFilePath_converted]; + CFURLRef anUrl = (__bridge CFURLRef)[NSURL fileURLWithPath:filePath isDirectory:NO]; FSRef ref; CFURLGetFSRef(anUrl,&ref); CFTypeRef outValue; @@ -87,9 +86,11 @@ completeIPath = [[NSString stringWithString:directoryPath] stringByAppendingPathComponent:iPath]; [self.fileManager fileExistsAtPath:completeIPath isDirectory: &isDirectory]; - if (!isDirectory) - if ([self fileConformsToMovieUTI:completeIPath]) - [movies addObject:completeIPath]; + if (isDirectory == YES) + continue; + + if ([self fileConformsToMovieUTI:completeIPath] == YES) + [movies addObject:completeIPath]; } return movies;