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

Commit

Permalink
Oops, I broke replication with that last commit
Browse files Browse the repository at this point in the history
Fixes #219
  • Loading branch information
snej committed Jan 15, 2013
1 parent 91a6d34 commit dfbb945
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Source/TDReplicator.m
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -432,8 +432,10 @@ - (void) revisionFailed {


// Before doing anything else, determine whether we have an active login session. // Before doing anything else, determine whether we have an active login session.
- (void) checkSession { - (void) checkSession {
if (![_authorizer respondsToSelector: @selector(loginParametersForSite:)]) if (![_authorizer respondsToSelector: @selector(loginParametersForSite:)]) {
[self fetchRemoteCheckpointDoc]; [self fetchRemoteCheckpointDoc];
return;
}


// First check whether a session exists // First check whether a session exists
[self asyncTaskStarted]; [self asyncTaskStarted];
Expand Down

0 comments on commit dfbb945

Please sign in to comment.