Skip to content

Commit 14afe88

Browse files
authored
Merge pull request #33 from magefan/10988-data-layer-page-values-are-not-accurate
10988-data-layer-page-values-are-not-accurate
2 parents f61dd90 + 5b62090 commit 14afe88

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Model/AbstractDataLayer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ protected function getCategoryNames(Product $product): array
177177
$categoryNames[] = $category->getName();
178178
$number++;
179179
}
180-
$result['category'] = implode('/', $categoryNames);
180+
$result['category'] = implode(',', $categoryNames);
181181

182182
}
183183

0 commit comments

Comments
 (0)