Skip to content
This repository has been archived by the owner on Dec 18, 2022. It is now read-only.

Commit

Permalink
drfutygiuhokji
Browse files Browse the repository at this point in the history
  • Loading branch information
NSExceptional committed Dec 29, 2015
1 parent 8535781 commit a6f67e9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Pod/Classes/Model/SKUser.m
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
@implementation SKUser

- (NSString *)description {
return [NSString stringWithFormat:@"<%@sees your stories=%d, is shared=%d, is local=%d, status=%lu, username=%@>",
NSStringFromClass(self.class), _canSeeCustomStories, _isSharedStory, _isLocalStory, self.friendStatus, self.username];
return [NSString stringWithFormat:@"<%@sees your stories=%d, is shared=%d, is local=%d, status=%@, username=%@>",
NSStringFromClass(self.class), _canSeeCustomStories, _isSharedStory, _isLocalStory, @(self.friendStatus), self.username];
}

#pragma mark - Mantle
Expand Down
5 changes: 3 additions & 2 deletions Pod/Classes/Networking/SKClient+Snaps.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,14 @@
/** Marks a set of snaps as opened for the specified length at the given times.
@param snaps An array of \c SKSnap objects.
@param times An array of \c NSDate objects.
@param replayed An array of NSNumber booleans indicating whether the corresponding snap was replayed.
@param secondsViewed An array of \c NSNumber objects. Try to use floating point nubmers. */
- (void)markSnapsViewed:(NSArray *)snaps atTimes:(NSArray *)times for:(NSArray *)secondsViewed completion:(ErrorBlock)completion;
- (void)markSnapsViewed:(NSArray *)snaps atTimes:(NSArray *)times for:(NSArray *)secondsViewed replayed:(NSArray *)replayed completion:(ErrorBlock)completion;
/** Marks a snap as screenshotted and viewed for \c secondsViewed seconds.
@param secondsViewed The number of seconds the corresponding snap was viewed for.
@param replayed An array of NSNumber booleans indicating whether the corresponding snap was replayed.
@param completion Takes an error, if any. */
- (void)markSnapScreenshot:(SKSnap *)snap for:(NSUInteger)secondsViewed replayed:(NSArray *)replayed completion:(ErrorBlock)completion;
- (void)markSnapScreenshot:(SKSnap *)snap for:(NSUInteger)secondsViewed completion:(ErrorBlock)completion;

/** Loads a snap.
@param completion Takes an error, if any, and an \c SKBlob object. */
Expand Down

0 comments on commit a6f67e9

Please sign in to comment.