Commit c08b5d4c authored by Steffen Rühlmann's avatar Steffen Rühlmann
Browse files

#3293598: convert url object to string to fix php error in checkAvailable...

#3293598:  convert url object to string to fix php error in checkAvailable method of DeeplTranslator
parent 78dd07e1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -97,7 +97,7 @@ abstract class DeeplTranslator extends TranslatorPluginBase implements Container

    return AvailableResult::no($this->t('@translator is not available. Make sure it is properly <a href=:configured>configured</a>.', [
      '@translator' => $translator->label(),
      ':configured' => $translator->toUrl(),
      ':configured' => $translator->toUrl()->toString(),
    ]));
  }