Skip to content

Commit 27fd38c

Browse files
committed
Merge branch 'fail-verify-on-error' into carthage-recursive
2 parents d510225 + 3e408f4 commit 27fd38c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

ShareClient/ShareService.swift

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,7 @@ public class ShareService: ServiceAuthentication {
7575

7676
let client = ShareClient(username: username, password: password, shareServer: url.absoluteString)
7777
client.fetchLast(1) { (error, _) in
78-
completion(true, error)
79-
78+
completion(error == nil, error)
8079
}
8180
self.client = client
8281
}

0 commit comments

Comments
 (0)