Skip to content
Open
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: 1 addition & 5 deletions FTPKit/FTPHandle.m
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,7 @@ - (instancetype)initWithPath:(NSString *)aPath attributes:(NSDictionary *)aAttri
self.size = [[aAttributes objectForKey:(id)kCFFTPResourceSize] unsignedLongLongValue];
self.type = [[aAttributes objectForKey:(id)kCFFTPResourceType] intValue];

if ([aPath hasPrefix:@"/"]) {
self.path = [aPath stringByAppendingPathComponent:name];
} else {
self.path = [NSString stringWithFormat:@"%@/%@", aPath, name];
}
self.path = [aPath stringByAppendingPathComponent:name];
}
return self;
}
Expand Down