Skip to content

Commit 60d2519

Browse files
committed
updated some constructors post merge fix
1 parent d906aef commit 60d2519

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Source/FikaAmazonAPI/AmazonConnection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ private void Init(AmazonCredential Credentials)
135135
this._EasyShip20220323 = new EasyShip20220323Service(this.Credentials, this.RateLimitingHandler);
136136
this._AplusContent = new AplusContentService(this.Credentials, this.RateLimitingHandler);
137137
this._Feed = new FeedService(this.Credentials, this.RateLimitingHandler);
138-
this._ListingsItem = new ListingsItemService(this.Credentials, this.RateLimitingHandler, _loggerFactory);
138+
this._ListingsItem = new ListingsItemService(this.Credentials, _loggerFactory, this.RateLimitingHandler );
139139
this._Restrictions = new RestrictionService(this.Credentials, this.RateLimitingHandler);
140140
this._MerchantFulfillment = new MerchantFulfillmentService(this.Credentials, this.RateLimitingHandler);
141141
this._Messaging = new MessagingService(this.Credentials, this.RateLimitingHandler);

Source/FikaAmazonAPI/Services/RequestService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ protected string ApiBaseUrl
4545

4646
private ILogger<RequestService>? _logger = null;
4747

48-
public RequestService(AmazonCredential amazonCredential, ILoggerFactory? loggerFactory) : this(amazonCredential)
48+
public RequestService(AmazonCredential amazonCredential, ILoggerFactory? loggerFactory, IRateLimitingHandler rateLimitingHandler = null) : this(amazonCredential, rateLimitingHandler)
4949
{
5050
_logger = loggerFactory?.CreateLogger<RequestService>();
5151
}

0 commit comments

Comments
 (0)