Merged PR 3242: better base url

better base url
This commit is contained in:
Xi Luo 2017-10-31 02:30:43 +00:00
Родитель cbcd5f327c
Коммит 8b8654d7bb
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -58,6 +58,9 @@ typedef void(^PORequestCompletionBlock)(NSURLResponse *response, id responseObje
self = [super init];
if (self) {
if(![endpoint hasSuffix:@"/"]){
endpoint = [endpoint stringByAppendingString:@"/"];
}
self.endpoint = endpoint;
self.subscriptionKey = key;
}