Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
image_resize
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
image_resize
Merge requests
!9
Fix issue with conditional logic leading to incorrect evaluations
Code
Review changes
Check out branch
Download
Patches
Plain diff
Open
Fix issue with conditional logic leading to incorrect evaluations
issue/image_resize-3441498:3441498-issue-with-conditional
into
1.x
Overview
0
Commits
1
Pipelines
0
Changes
1
Open
Isaac Rodriguez
requested to merge
issue/image_resize-3441498:3441498-issue-with-conditional
into
1.x
1 year ago
Overview
0
Commits
1
Pipelines
0
Changes
1
Expand
Closes
#3441498
0
0
Merge request reports
Compare
1.x
1.x (HEAD)
and
latest version
latest version
b5caa705
1 commit,
1 year ago
1 file
+
1
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
src/Plugin/QueueWorker/ImageResize.php
+
1
−
1
Options
@@ -208,7 +208,7 @@ class ImageResize extends QueueWorkerBase implements ContainerFactoryPluginInter
/** @var \Drupal\Core\Entity\FieldableEntityInterface $referencing_entity */
foreach
(
$entity_references
as
$referencing_entity
)
{
foreach
(
$referencing_entity
->
get
(
$field_name
)
as
$item
)
{
if
(
$item
->
target_id
==
$file
->
id
()
&&
$item
->
width
!=
$width
||
$item
->
height
!=
$new_height
)
{
if
(
$item
->
target_id
==
$file
->
id
()
&&
(
$item
->
width
!=
$width
||
$item
->
height
!=
$new_height
)
)
{
$item
->
width
=
$new_width
;
$item
->
height
=
$new_height
;
$entities_to_save
[
$referencing_entity
->
getEntityTypeId
()
.
':'
.
$referencing_entity
->
id
()]
=
$referencing_entity
;
Loading