Closed (fixed)
Project:
Exif
Version:
8.x-2.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Issue tags:
Reporter:
Created:
28 Nov 2022 at 03:13 UTC
Updated:
4 May 2023 at 12:59 UTC
Jump to comment: Most recent
Comments
Comment #3
nickdickinsonwildeComment #5
nickdickinsonwildeHate committing things with no functional tests of the save process. Definitely need to prioritize #3273778: Add test coverage.
But tested on one site for months and we do need a stable release rather than dev.
Comment #6
damienmckennaComment #8
dewancodes commentedBEFORE:
$terms = taxonomy_term_load_multiple_by_name($item, 'tags');
AFTER:
$terms = \Drupal::entityTypeManager()->getStorage("taxonomy_vocabulary")->loadByProperties(["name" => (string)$item, "vid" => 'tags']);
(string) this is the string enforcement.
This worked for me.