Skip to content
This repository was archived by the owner on Jan 16, 2018. It is now read-only.
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[submodule "Vendor/OCHamcrest"]
path = Vendor/OCHamcrest
url = http://github.com/pivotal/OCHamcrest.git
url = https://github.com/hamcrest/OCHamcrest.git
[submodule "Vendor/TouchJSON"]
path = Vendor/TouchJSON
url = http://github.com/mrevilme/TouchJSON.git
2 changes: 1 addition & 1 deletion Classes/LRRestyResource.m
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ - (void)post:(LRRestyResourceResponseBlock)responseBlock;
- (void)post:(id)payload callback:(LRRestyResourceResponseBlock)responseBlock;
{
__block LRRestyResource *blockResource = [self retain];
[restClient put:[URL absoluteString] payload:payload headers:nil withBlock:^(LRRestyResponse *response){
[restClient post:[URL absoluteString] payload:payload headers:nil withBlock:^(LRRestyResponse *response){
responseBlock(response, blockResource);
[blockResource release];
}];
Expand Down
2 changes: 1 addition & 1 deletion Vendor/OCHamcrest