apidae 1.2.35 → 1.2.36

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0ab6ee3f3a2d8930bc4d486e7de657f1fb408e69f0faf9b49e01921241210b02
4
- data.tar.gz: 8c7637a88153f8befc3d3b94569f60afad0caf19235fc128b5302b104109bc1e
3
+ metadata.gz: 5e6c9a3388be874c4b24127f34824279025527c2fdd431393d620de6a33cabc2
4
+ data.tar.gz: 667cd897185d201d1c04e301bbb7e0b1d74b7d3cf0ffcd7e11cd590bd811bb98
5
5
  SHA512:
6
- metadata.gz: 3f27a28ff6f954de764937f484ce844113acc6f642c2ba7f6eab37889f80c979ad92f4ddd0c13263017280678f969f83ff0920a4ac315306237bbefc75d35114
7
- data.tar.gz: 75b2bb35a5d82be0b16019e4f55e1b804e69aa8cbe496d8f240dfb8dff7771d6f24a9c0150841ea389a80182f5b5851e56cb0b50c27ad11c1b50d470f3d94cb0
6
+ metadata.gz: 1787ecebf05b6af211e39cb2c931e8b56b143e5ffbacca52d4fc585a2c6171091ea8386f0c52d8d908cf5cfdb4d4dfecd5bb9002b1fa57f378d7e909aede870c
7
+ data.tar.gz: 061a47265527f1110f59b596013bb49e04a33bd689e017e524ef3bfa38d9476ac99e7d5fd91acf3edd890f03831cbd93c014736bf59e547614853769e891979f
@@ -223,7 +223,7 @@ module Apidae
223
223
  computed_address << address_hash[:adresse3]
224
224
  end
225
225
  loc_data.merge!({address: computed_address})
226
- loc_data.merge!({place: (type_data_hash ? type_data_hash[:nomLieu] : nil) || address_hash[:nomDuLieu]})
226
+ loc_data.merge!({place: (type_data_hash || {})[:nomLieu] || (address_hash || {})[:nomDuLieu]})
227
227
  geoloc_details = location_hash[:geolocalisation]
228
228
  if geoloc_details && geoloc_details[:valide] && geoloc_details[:geoJson]
229
229
  loc_data[:latitude] = geoloc_details[:geoJson][:coordinates][1]
@@ -1,3 +1,3 @@
1
1
  module Apidae
2
- VERSION = "1.2.35"
2
+ VERSION = "1.2.36"
3
3
  end