Add mention of the translation provider when translating a post (#19433)

This commit is contained in:
Claire
2022-10-24 18:37:57 +02:00
committed by GitHub
parent 8046cf34d6
commit 30453fab80
5 changed files with 5 additions and 5 deletions

View File

@ -37,7 +37,7 @@ class TranslationService::LibreTranslate < TranslationService
raise UnexpectedResponseError unless json.is_a?(Hash)
Translation.new(text: json['translatedText'], detected_source_language: source_language)
Translation.new(text: json['translatedText'], detected_source_language: source_language, provider: 'LibreTranslate')
rescue Oj::ParseError
raise UnexpectedResponseError
end