Skip to content

Commit

Permalink
Merge branch 'CodingFu-main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
philnash committed Jun 18, 2020
2 parents ab9bfda + d8b1ac1 commit 5340439
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions lib/bitly/api/bitlink/clicks_summary.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ def self.fetch(client:, bitlink:, unit: nil, units: nil, unit_reference: nil, si
response = client.request(
path: "/bitlinks/#{bitlink}/clicks/summary",
params: {
"unit" => nil,
"units" => nil,
"unit_reference" => nil,
"size" => nil
"unit" => unit,
"units" => units,
"unit_reference" => unit_reference,
"size" => size
}
)
new(data: response.body, response: response)
Expand All @@ -32,4 +32,4 @@ def initialize(data:, response: nil)
end
end
end
end
end

0 comments on commit 5340439

Please sign in to comment.