Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
abuzuhri committed Aug 18, 2022
2 parents bc88cab + 7971a1b commit 606af84
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Source/FikaAmazonAPI/Services/FeedService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,10 @@ public async Task<string> SubmitFeedAsync(string XmlContentOrFilePath, FeedType
{
_ = await PostFileDataAsync(feedCreate.Url, XmlContentOrFilePath, contentType);
}
else if (contentType == ContentType.JSON)
{
_ = await PostFileDataAsync(feedCreate.Url, XmlContentOrFilePath, contentType);
}
else if (contentType == ContentType.TXT)
{
_ = await PostFileDataAsync(feedCreate.Url, XmlContentOrFilePath, contentType);
Expand Down

0 comments on commit 606af84

Please sign in to comment.