]> cat aescling's git repositories - mastodon.git/commitdiff
Bump cld3 from 3.2.6 to 3.3.0 (#13107)
authordependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
Sun, 8 Mar 2020 23:12:52 +0000 (00:12 +0100)
committerGitHub <noreply@github.com>
Sun, 8 Mar 2020 23:12:52 +0000 (00:12 +0100)
* Bump cld3 from 3.2.6 to 3.3.0

Bumps [cld3](https://github.com/akihikodaki/cld3-ruby) from 3.2.6 to 3.3.0.
- [Release notes](https://github.com/akihikodaki/cld3-ruby/releases)
- [Commits](https://github.com/akihikodaki/cld3-ruby/compare/v3.2.6...v3.3.0)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
* Fix compatibility with cld3 3.3.0

Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
Co-authored-by: Eugen Rochko <eugen@zeonfederated.com>
Gemfile
Gemfile.lock
app/lib/language_detector.rb

diff --git a/Gemfile b/Gemfile
index f6c7057655955da6429bf308c57afb216d12a649..d3056c929b6177deeee57c2bf5212ffaa079af64 100644 (file)
--- a/Gemfile
+++ b/Gemfile
@@ -35,7 +35,7 @@ gem 'browser'
 gem 'charlock_holmes', '~> 0.7.7'
 gem 'iso-639'
 gem 'chewy', '~> 5.1'
-gem 'cld3', '~> 3.2.6'
+gem 'cld3', '~> 3.3.0'
 gem 'devise', '~> 4.7'
 gem 'devise-two-factor', '~> 3.1'
 
index cd255bc3ee24dec72cb47f5dfb3f830a9cafe08e..82e6360ff12d75ea16801a0fa5c821ccf260c427 100644 (file)
@@ -160,7 +160,7 @@ GEM
       elasticsearch (>= 2.0.0)
       elasticsearch-dsl
     chunky_png (1.3.11)
-    cld3 (3.2.6)
+    cld3 (3.3.0)
       ffi (>= 1.1.0, < 1.12.0)
     climate_control (0.2.0)
     cocaine (0.5.8)
@@ -681,7 +681,7 @@ DEPENDENCIES
   capybara (~> 3.31)
   charlock_holmes (~> 0.7.7)
   chewy (~> 5.1)
-  cld3 (~> 3.2.6)
+  cld3 (~> 3.3.0)
   climate_control (~> 0.2)
   concurrent-ruby
   connection_pool
index 302072bccbce087be60e5b6592dcfc84c2dcb15f..05a06726d7a02ceed1f0a4063e38ed83b43139f3 100644 (file)
@@ -52,8 +52,10 @@ class LanguageDetector
 
   def detect_language_code(text)
     return if unreliable_input?(text)
+
     result = @identifier.find_language(text)
-    iso6391(result.language.to_s).to_sym if result.reliable?
+
+    iso6391(result.language.to_s).to_sym if result&.reliable?
   end
 
   def iso6391(bcp47)