Skip to content

Commit

Permalink
articles are now searchable via Luigi's Box
Browse files Browse the repository at this point in the history
  • Loading branch information
TomasLudvik committed Mar 12, 2024
1 parent 459e205 commit d60d43e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Model/FeedItem/LuigisBoxProductFeedItem.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

class LuigisBoxProductFeedItem implements FeedItemInterface
{
public const UNIQUE_IDENTIFIER_PREFIX = 'product-';
public const UNIQUE_IDENTIFIER_PREFIX = 'product';
protected const SMALL_IMAGE_SIZE = 100;
protected const MEDIUM_IMAGE_SIZE = 200;
protected const LARGE_IMAGE_SIZE = 600;
Expand Down Expand Up @@ -80,7 +80,7 @@ public function getSeekId(): int
*/
public function getIdentity(): string
{
return static::UNIQUE_IDENTIFIER_PREFIX . $this->id;
return static::UNIQUE_IDENTIFIER_PREFIX . '-' . $this->id;
}

/**
Expand Down

0 comments on commit d60d43e

Please sign in to comment.