Results 1 comments of peterboni

BRRequestUpload.m ``` NSLog(@"self.path=%@",self.path); // for some reason 'stringByDeletingLastPathComponent' url encodes the already url encoded self.path NSString *pathDecoded = (__bridge_transfer NSString *)CFURLCreateStringByReplacingPercentEscapesUsingEncoding(NULL, (__bridge CFStringRef) self.path, CFSTR(""), kCFStringEncodingUTF8); NSLog(@"pathDecoded=%@",pathDecoded); self.listrequest.path = [pathDecoded...