1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-11-27 09:14:39 +01:00

Update PostgresArray.php

This commit is contained in:
Daniil Gentili 2021-04-18 23:54:35 +02:00 committed by GitHub
parent b07d08c297
commit 1584bf6fba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -82,7 +82,7 @@ class PostgresArray extends SqlArray
$host = $config->getHost();
$port = $config->getPort();
$this->pdo = new \PDO(
"postgre:host={$host};port={$port};charset=UTF8",
"pgsql:host={$host};port={$port};charset=UTF8",
$settings->getUsername(),
$settings->getPassword()
);