Update TrelloJsonService.php

removed trailing white space, I am sorry for that thx for your patience.

Signed-off-by: mulles <com.github@emu.lu>
This commit is contained in:
mulles
2024-05-22 10:28:47 +02:00
committed by backportbot[bot]
parent 8df30e0d20
commit 3f66c1622a

View File

@@ -361,7 +361,7 @@ class TrelloJsonService extends ABoardImportService {
private function replaceUsernames(string $text): string { private function replaceUsernames(string $text): string {
foreach ($this->getImportService()->getConfig('uidRelation') as $trello => $nextcloud) { foreach ($this->getImportService()->getConfig('uidRelation') as $trello => $nextcloud) {
$text = str_replace($trello, $nextcloud, $text); $text = str_replace($trello, $nextcloud, $text);
} }
return $text; return $text;
} }