about summary refs log tree commit diff
path: root/app/lib/language_detector.rb
diff options
context:
space:
mode:
authorMatt Jankowski <mjankowski@thoughtbot.com>2017-04-21 22:26:25 -0400
committerEugen <eugen@zeonfederated.com>2017-04-22 04:26:25 +0200
commit629d35e6f5d353d30661c1af7bbcc8aa6411e698 (patch)
treebbe02c15e82b7087eab38f9043ab2947607e1c5f /app/lib/language_detector.rb
parent67dea31b0f83eb711bbd49a7b893d04ca16c56fa (diff)
[WIP] Html lang on statuses (#2297)
* Add html lang attributes around statuses

* Remove urls from language detection
Diffstat (limited to 'app/lib/language_detector.rb')
-rw-r--r--app/lib/language_detector.rb10
1 files changed, 9 insertions, 1 deletions
diff --git a/app/lib/language_detector.rb b/app/lib/language_detector.rb
index b6f81923b..9a32d6a64 100644
--- a/app/lib/language_detector.rb
+++ b/app/lib/language_detector.rb
@@ -9,11 +9,19 @@ class LanguageDetector
   end
 
   def to_iso_s
-    WhatLanguage.new(:all).language_iso(text) || default_locale.to_sym
+    WhatLanguage.new(:all).language_iso(text_without_urls) || default_locale.to_sym
   end
 
   private
 
+  def text_without_urls
+    text.dup.tap do |new_text|
+      URI.extract(new_text).each do |url|
+        new_text.gsub!(url, '')
+      end
+    end
+  end
+
   def default_locale
     account&.user&.locale || I18n.default_locale
   end