Use the the assigned serverURL in FeedbackManager

This commit is contained in:
Andreas Linde 2012-10-05 22:45:15 +02:00
parent aee8ad245c
commit 798dd8b9b2

View File

@ -582,7 +582,7 @@
];
// build request & send
NSString *url = [NSString stringWithFormat:@"https://warmup.hockeyapp.net/%@", parameter];
NSString *url = [NSString stringWithFormat:@"%@%@", self.serverURL, parameter];
BITHockeyLog(@"INFO: sending api request to %@", url);
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:url] cachePolicy:1 timeoutInterval:10.0];