Small fixes (#32)

* `bot.max_concurrent_transmissions` reduced to only 1
* Fixed using UnauthorizedClient when not needed

Co-authored-by: profitroll <vozhd.kk@gmail.com>
Reviewed-on: #32
This commit is contained in:
Profitroll 2023-07-06 15:21:21 +03:00
parent 82467518da
commit 8c27fb7c37
2 changed files with 9 additions and 8 deletions

View File

@ -6,7 +6,7 @@
"api_id": 0,
"api_hash": "",
"bot_token": "",
"max_concurrent_transmissions": 3,
"max_concurrent_transmissions": 1,
"scoped_commands": true
},
"database": {

View File

@ -27,13 +27,14 @@ parser.add_argument("--create-album", action="store_true")
args = parser.parse_args()
unauthorized_client = Client(
base_url=sync.config_get("address", "posting", "api"),
timeout=5.0,
verify_ssl=True,
raise_on_unexpected_status=True,
follow_redirects=False,
)
if args.create_user or args.create_album:
unauthorized_client = Client(
base_url=sync.config_get("address", "posting", "api"),
timeout=5.0,
verify_ssl=True,
raise_on_unexpected_status=True,
follow_redirects=False,
)
async def cli_create_user() -> None: