Merge pull request #220 from medusajs/hotfix/contentful-variants

fix: ensures that product variants are updated in contentful when they are part of a product update
This commit is contained in:
Sebastian Rindom
2021-03-26 15:23:09 +01:00
committed by GitHub

View File

@@ -449,9 +449,14 @@ class ContentfulService extends BaseService {
"options",
]
const found = variant.fields.find((f) => updateFields.includes(f))
if (!found) {
return
// Update came directly from product variant service so only act on a couple
// of fields. When the update comes from the product we want to ensure
// references are set up correctly so we run through everything.
if (variant.fields) {
const found = variant.fields.find((f) => updateFields.includes(f))
if (!found) {
return
}
}
try {