From 1bbc19f9e0ffeee1b6d55d4aaedf0f5e44195318 Mon Sep 17 00:00:00 2001 From: mulles Date: Wed, 22 May 2024 10:28:47 +0200 Subject: [PATCH] Update TrelloJsonService.php removed trailing white space, I am sorry for that thx for your patience. Signed-off-by: mulles --- lib/Service/Importer/Systems/TrelloJsonService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Service/Importer/Systems/TrelloJsonService.php b/lib/Service/Importer/Systems/TrelloJsonService.php index e10e0906d..e6f487ba5 100644 --- a/lib/Service/Importer/Systems/TrelloJsonService.php +++ b/lib/Service/Importer/Systems/TrelloJsonService.php @@ -361,7 +361,7 @@ private function translateColor(?string $color): string { private function replaceUsernames(string $text): string { foreach ($this->getImportService()->getConfig('uidRelation') as $trello => $nextcloud) { - $text = str_replace($trello, $nextcloud, $text); + $text = str_replace($trello, $nextcloud, $text); } return $text; }