Added DeepL html support

This commit is contained in:
M66B
2022-04-06 19:35:53 +02:00
parent 74711292fa
commit 229111377a
5 changed files with 74 additions and 17 deletions

View File

@@ -8155,7 +8155,7 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
protected DeepL.Translation onExecute(Context context, Bundle args) throws Throwable {
String text = args.getString("text");
String target = args.getString("target");
return DeepL.translate(text, target, context);
return DeepL.translate(text, false, target, context);
}
@Override