Kaynağa Gözat

Support explicitly supplying language code for status via REST API (#7389)

master
Eugen Rochko 6 yıl önce
committed by GitHub
ebeveyn
işleme
0f0cc3f2eb
Veri tabanında bu imza için bilinen anahtar bulunamadı GPG Anahtar Kimliği: 4AEE18F83AFDEB23
1 değiştirilmiş dosya ile 5 ekleme ve 1 silme
  1. +5
    -1
      app/services/post_status_service.rb

+ 5
- 1
app/services/post_status_service.rb Dosyayı Görüntüle

@@ -31,7 +31,7 @@ class PostStatusService < BaseService
sensitive: (options[:sensitive].nil? ? account.user&.setting_default_sensitive : options[:sensitive]),
spoiler_text: options[:spoiler_text] || '',
visibility: options[:visibility] || account.user&.setting_default_privacy,
language: LanguageDetector.instance.detect(text, account),
language: language_from_option(options[:language]) || LanguageDetector.instance.detect(text, account),
application: options[:application])
end

@@ -65,6 +65,10 @@ class PostStatusService < BaseService
media
end

def language_from_option(str)
ISO_639.find(str)&.alpha2
end

def process_mentions_service
ProcessMentionsService.new
end


Yükleniyor…
İptal
Kaydet