mas-rad_core 0.0.50 → 0.0.51

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
  SHA1:
3
- metadata.gz: 92a9f89ad636cfddc99f079a6cced751b5c819ad
4
- data.tar.gz: 27a424cda121e1ec4dc503e682651b3ec977214c
3
+ metadata.gz: c278e0b184adcf35f61019f0a1009d314f6e15da
4
+ data.tar.gz: ec17cee5fe7578b75b19a9034b0b978d0144b074
5
5
  SHA512:
6
- metadata.gz: c10c72a22fcbb65463e1b4fbb3ce59bf260141571d9d62b7026c291e62aa4e8238282de6400bf09e2f1716a266835dc7e69e94e7336651a24bf4c2d999e636bc
7
- data.tar.gz: 6a661de3dd60af501c6ef022dad975fd6b48a231d6235e101317bde01e0006a1b1af8d5bf9f44d8457325dc7e70c91b1ef759a62ad36a5f7677fd7850f58b80f
6
+ metadata.gz: 1c98f59c2cc727a7f8f6d53a022ad50ab574bb4b6afaa86e334d3e5148825c16638fb423f055375d7b06a27859d78b7a4aba0e60d9adc954bb9a2ef5a68825a9
7
+ data.tar.gz: 1c1869ce8e83d47ee36031d37e305d1f02c6a90c9ed8aacf439ab95d6a0a1825012db19ec8e23040d55cd0911ab52cbc9fe77e0a476477bb7549f1b23d77c90a
@@ -75,7 +75,7 @@ class Adviser < ActiveRecord::Base
75
75
  end
76
76
 
77
77
  def reindex_old_firm
78
- IndexFirmJob.perform_later(@old_firm_id) if @old_firm_id.present?
78
+ IndexFirmJob.perform_later(Firm.find(@old_firm_id)) if @old_firm_id.present?
79
79
  @old_firm_id = nil
80
80
  end
81
81
 
@@ -1,5 +1,5 @@
1
1
  module MAS
2
2
  module RadCore
3
- VERSION = '0.0.50'
3
+ VERSION = '0.0.51'
4
4
  end
5
5
  end