Skip to content

Commit 7308161

Browse files
committed
Fix type cast issue
1 parent 95fe398 commit 7308161

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/code/Meta/BusinessExtension/Model/MBEInstalls.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ public function save($response, $storeId)
151151
$this->savePages($data['pages'] ?? '', $storeId);
152152
$this->saveCatalogId($catalogId, $storeId);
153153
$this->saveCommercePartnerIntegrationId($commercePartnerIntegrationId, $storeId);
154-
$this->saveIsOnsiteEligible($onsite_eligible, $storeId);
154+
$this->saveIsOnsiteEligible($onsite_eligible, (int)$storeId);
155155
$this->saveMerchantSettingsId($data['commerce_merchant_settings_id'] ?? '', $storeId);
156156
$this->saveInstalledFeatures($data['installed_features'] ?? '', $storeId);
157157
$this->setInstalledFlag($storeId);

0 commit comments

Comments
 (0)