Skip to content

Commit b47a248

Browse files
committed
remove clean params
1 parent 29328e5 commit b47a248

File tree

1 file changed

+2
-2
lines changed
  • cloudinary-image-management-and-manipulation-in-the-cloud-cdn/php/sync

1 file changed

+2
-2
lines changed

cloudinary-image-management-and-manipulation-in-the-cloud-cdn/php/sync/class-storage.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -181,13 +181,13 @@ public function sync( $attachment_id ) {
181181
// Add low quality transformations.
182182
$transformations[] = array( 'quality' => 'auto:low' );
183183
}
184-
$url = $this->media->cloudinary_url( $attachment_id, '', $transformations, null, false, true );
184+
$url = $this->media->cloudinary_url( $attachment_id, '', $transformations, null, false );
185185
break;
186186
case 'dual_full':
187187
if ( ! empty( $previous_state ) && 'dual_full' !== $previous_state ) {
188188
// Only do this is it's changing a state.
189189
$transformations = $this->media->get_transformation_from_meta( $attachment_id );
190-
$url = $this->media->cloudinary_url( $attachment_id, '', $transformations, null, false, false );
190+
$url = $this->media->cloudinary_url( $attachment_id, '', $transformations, null, false );
191191
}
192192
break;
193193
}

0 commit comments

Comments
 (0)