We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e76a1c3 commit 1d80f22Copy full SHA for 1d80f22
Block/Set/Widget/CustomEntityWidget.php
@@ -585,7 +585,7 @@ private function getWidgetPagerBlockName()
585
public function decodeConditions(string $encodedConditions): array
586
{
587
try {
588
- $conditions = $this->serializer->unserialize(htmlspecialchars_decode($encodedConditions));
+ $conditions = $this->conditionsHelper->decode(htmlspecialchars_decode($encodedConditions));
589
return is_array($conditions) ? $conditions : [];
590
} catch (\InvalidArgumentException $exception) {
591
/** @var array{exception:\Throwable, encoded_conditions:string, uri:string} $context */
0 commit comments