Skip to content

Commit 56dc137

Browse files
committed
small fixes
1 parent 9e8d6e8 commit 56dc137

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/bigbluebutton_api.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -693,8 +693,8 @@ def get_url(method, params={})
693693
else
694694
url = @url
695695
url += "/" unless url.end_with?("/")
696-
url += method
697-
url += "#{params_string}&" unless params_string.empty?
696+
url += method.to_s
697+
url += "?#{params_string}&" unless params_string.empty?
698698
url += "checksum=#{checksum}"
699699
return url, nil
700700
end

0 commit comments

Comments
 (0)