From 3f66c1622a53454854c89ceae06b25a8ab694d35 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 @@ class TrelloJsonService extends ABoardImportService { 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; }