diff --git a/lib/rx/client.rb b/lib/rx/client.rb index c3a9fe4780f..a963fdbeb0b 100644 --- a/lib/rx/client.rb +++ b/lib/rx/client.rb @@ -123,10 +123,7 @@ def get_tracking_history_rx(id) # @return [Faraday::Env] # def post_refill_rxs(ids) - if (result = perform(:post, 'prescription/rxrefill', ids, token_headers)) - Common::Collection.bust([cache_key('getactiverx'), cache_key('gethistoryrx')]) - end - result + perform(:post, 'prescription/rxrefill', ids, token_headers) end ## @@ -136,10 +133,7 @@ def post_refill_rxs(ids) # @return [Faraday::Env] # def post_refill_rx(id) - if (result = perform(:post, "prescription/rxrefill/#{id}", nil, token_headers)) - Common::Collection.bust([cache_key('getactiverx'), cache_key('gethistoryrx')]) - end - result + perform(:post, "prescription/rxrefill/#{id}", nil, token_headers) end ##