mirror of
https://git.wownero.com/wowlet/wowlet.git
synced 2024-08-15 01:03:14 +00:00
Check if given node URL has https so we can append https for get_info call
This commit is contained in:
parent
3d5dae1f42
commit
403b8140b3
1 changed files with 5 additions and 1 deletions
|
@ -25,6 +25,9 @@ struct FeatherNode {
|
||||||
FeatherNode(QString _address, unsigned int height, bool online) : height(height), online(online){
|
FeatherNode(QString _address, unsigned int height, bool online) : height(height), online(online){
|
||||||
// wonky ipv4/host parsing, should be fine(tm)(c).
|
// wonky ipv4/host parsing, should be fine(tm)(c).
|
||||||
if(_address.isEmpty()) return;
|
if(_address.isEmpty()) return;
|
||||||
|
if(_address.contains("https://")) {
|
||||||
|
this->isHttps = true;
|
||||||
|
}
|
||||||
_address = _address.replace("https://", "");
|
_address = _address.replace("https://", "");
|
||||||
_address = _address.replace("http://", "");
|
_address = _address.replace("http://", "");
|
||||||
if(_address.contains("@")){ // authentication, user/pass
|
if(_address.contains("@")){ // authentication, user/pass
|
||||||
|
@ -56,6 +59,7 @@ struct FeatherNode {
|
||||||
bool tor = false;
|
bool tor = false;
|
||||||
bool isConnecting = false;
|
bool isConnecting = false;
|
||||||
bool isActive = false;
|
bool isActive = false;
|
||||||
|
bool isHttps = false;
|
||||||
|
|
||||||
QString generateFull() {
|
QString generateFull() {
|
||||||
QString auth;
|
QString auth;
|
||||||
|
@ -65,7 +69,7 @@ struct FeatherNode {
|
||||||
}
|
}
|
||||||
|
|
||||||
QString as_url() {
|
QString as_url() {
|
||||||
return QString("http://%1/get_info").arg(this->full);
|
return QString("%1://%2/get_info").arg(this->isHttps ? "https": "http",this->full);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool operator == (const FeatherNode &other) const {
|
bool operator == (const FeatherNode &other) const {
|
||||||
|
|
Loading…
Reference in a new issue