mirror of
https://github.com/amnezia-vpn/amnezia-client.git
synced 2026-06-22 02:01:08 +07:00
feature: added multiply proxy storage support (#1465)
This commit is contained in:
@@ -200,9 +200,9 @@ QStringList GatewayController::getProxyUrls()
|
|||||||
|
|
||||||
QStringList proxyStorageUrl;
|
QStringList proxyStorageUrl;
|
||||||
if (m_isDevEnvironment) {
|
if (m_isDevEnvironment) {
|
||||||
proxyStorageUrl = QStringList { DEV_S3_ENDPOINT };
|
proxyStorageUrl = QString(DEV_S3_ENDPOINT).split(", ");
|
||||||
} else {
|
} else {
|
||||||
proxyStorageUrl = QStringList { PROD_S3_ENDPOINT };
|
proxyStorageUrl = QString(PROD_S3_ENDPOINT).split(", ");
|
||||||
}
|
}
|
||||||
|
|
||||||
QByteArray key = m_isDevEnvironment ? DEV_AGW_PUBLIC_KEY : PROD_AGW_PUBLIC_KEY;
|
QByteArray key = m_isDevEnvironment ? DEV_AGW_PUBLIC_KEY : PROD_AGW_PUBLIC_KEY;
|
||||||
|
|||||||
Reference in New Issue
Block a user