Skip to content
This repository has been archived by the owner on Nov 28, 2023. It is now read-only.

Commit

Permalink
Merge pull request #36 from venmo/daz/correct_app_switch_success
Browse files Browse the repository at this point in the history
Fixes #35
  • Loading branch information
0thernet committed Jun 11, 2014
2 parents 5e1b80d + fb887c0 commit 3235e28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion venmo-sdk/Categories/VENTransaction+VenmoSDK.m
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ + (instancetype)transactionWithSignedRequestDictionary:(NSDictionary *)dictionar

BOOL success = [cleanDictionary[@"success"] boolValue];
if (success) {
transaction.status = VENTransactionStatusUnknown;
transaction.status = VENTransactionStatusSettled;
}
else {
transaction.status = VENTransactionStatusFailed;
Expand Down

0 comments on commit 3235e28

Please sign in to comment.