-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump csharpier from 0.26.5 to 0.26.7 (#200)
* Bump csharpier from 0.26.5 to 0.26.7 Bumps [csharpier](https://github.com/belav/csharpier) from 0.26.5 to 0.26.7. - [Release notes](https://github.com/belav/csharpier/releases) - [Changelog](https://github.com/belav/csharpier/blob/main/CHANGELOG.md) - [Commits](belav/csharpier@0.26.5...0.26.7) --- updated-dependencies: - dependency-name: csharpier dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> * CSharpier format --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Guilherme Branco Stracini <[email protected]> Co-authored-by: gstraccini[bot] <44061807+gstraccini[bot]@users.noreply.github.com>
- Loading branch information
1 parent
acb5982
commit e895fe8
Showing
4 changed files
with
18 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -264,9 +264,10 @@ private Order GetOrderInternal(string orderId) | |
} | ||
else if ( | ||
transaction.TransactionId != null | ||
&& !transaction | ||
.TransactionId | ||
.Equals(@"NO-PAYMENT", StringComparison.InvariantCultureIgnoreCase) | ||
&& !transaction.TransactionId.Equals( | ||
@"NO-PAYMENT", | ||
StringComparison.InvariantCultureIgnoreCase | ||
) | ||
) | ||
{ | ||
LogConsumer.Info(@"Bank bill {0}", order.Sequence); | ||
|
@@ -297,10 +298,10 @@ private Order GetOrderInternal(string orderId) | |
} | ||
|
||
if ( | ||
order | ||
.ClientProfileData | ||
.IndexOf(@"ct.vtex", StringComparison.InvariantCultureIgnoreCase) != -1 | ||
order.ClientProfileData.Email.IndexOf( | ||
@"ct.vtex", | ||
StringComparison.InvariantCultureIgnoreCase | ||
) != -1 | ||
) | ||
{ | ||
order.ClientProfileData.Email = @"[email protected]"; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters