Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update user-streams branch to use AFNetworking 2 #87

Open
wants to merge 20 commits into
base: user-streams
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
876acc6
Look for "file_token", not "derived_files" when parsing responses int…
tonyarnold Apr 7, 2014
64ef296
Add "youMuted" property to ANKChannel
tonyarnold Apr 7, 2014
179b841
Update to AFNetworking 2.x, XCTest, Objective-C modules
tonyarnold Apr 7, 2014
2658e6e
Latest AFNetworking and SocketShuttle
tonyarnold Apr 7, 2014
b773a07
Bump to version 1.9.99
tonyarnold Apr 7, 2014
f46a379
Set default parameters on client initialization
tonyarnold Apr 7, 2014
82c2bc4
Whoops, forgot to pass along the parameters…
tonyarnold Apr 7, 2014
2199b4f
Add auto_subscribe parameter to channel object
tonyarnold Apr 13, 2014
384c666
Add support for deactivating a channel
tonyarnold Apr 13, 2014
dc0fa82
Lock submodule to AFNetworking 2.2.1
tonyarnold Apr 14, 2014
e1f5a2a
Add method to pass parameters to the initial streaming request
tonyarnold Apr 14, 2014
f4487d2
Add support for the various annotation types to the general parameter…
tonyarnold Apr 14, 2014
85086ef
Fix busted fetchMessagesWithIDs method
rrbrambley Apr 13, 2014
e84c956
Ensure that the default parameters are always present in the request URL
tonyarnold Apr 14, 2014
cc6b4ec
Respect the include_annotation request sent through from the parameters
tonyarnold Apr 14, 2014
f0d26a5
Add rate limiting information, and serialise responses properly (incl…
tonyarnold Apr 14, 2014
9b94cd9
Update submodule to AFNetworking 2.2.3
tonyarnold Apr 19, 2014
69a6761
Update `ANKClientFileUploadProgressBlock` to use `long long` in place…
tonyarnold Apr 19, 2014
4a5f4a2
AFNetworking 2.2.4
tonyarnold May 23, 2014
0a9bdf1
Handle streamed deletions
tonyarnold May 23, 2014
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
Prev Previous commit
Next Next commit
Fix busted fetchMessagesWithIDs method
  • Loading branch information
rrbrambley authored and tonyarnold committed Apr 14, 2014
commit 85086ef850a3df5b12b96c64c97762bd440e3b4a
2 changes: 1 addition & 1 deletion ADNKit/ANKClient+ANKMessage.m
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ - (AFHTTPRequestOperation *)fetchMessageWithID:(NSString *)messageID inChannelWi

- (AFHTTPRequestOperation *)fetchMessagesWithIDs:(NSArray *)messageIDs completion:(ANKClientCompletionBlock)completionHandler {
return [self enqueueGETPath:@"channels/messages"
parameters:nil
parameters:@{@"ids": [messageIDs componentsJoinedByString:@","]}
success:[self successHandlerForCollectionOfResourceClass:[ANKMessage class] clientHandler:completionHandler]
failure:[self failureHandlerForClientHandler:completionHandler]];
}
Expand Down