From 169131b5808e227dd128c08ad31e2a518d211563 Mon Sep 17 00:00:00 2001 From: Yaro Date: Wed, 31 Jan 2024 10:56:10 +0200 Subject: [PATCH] Update connection.rb switch to 443 --- lib/monobank/connection.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/monobank/connection.rb b/lib/monobank/connection.rb index 157dae6..bf84f55 100644 --- a/lib/monobank/connection.rb +++ b/lib/monobank/connection.rb @@ -3,7 +3,7 @@ module Monobank class Connection include HTTParty - base_uri 'api.monobank.ua' + base_uri 'https://api.monobank.ua' def get(pathname, options = {}) self.class.get(pathname, options) @@ -13,4 +13,4 @@ def post(pathname, options = {}) self.class.post(pathname, options) end end -end \ No newline at end of file +end