mirror of
https://github.com/YACReader/yacreader
synced 2025-06-04 01:28:55 -04:00
merged
This commit is contained in:
parent
1db8d270e0
commit
366f880fde
@ -249,10 +249,13 @@ void ServerConfigDialog::generateQR()
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
stl::sort(otherAddresses.begin(),otherAddresses.end(),ipComparator);
|
std::sort(otherAddresses.begin(),otherAddresses.end(),ipComparator);
|
||||||
|
|
||||||
if(otherAddresses.length()>0)
|
if(!otherAddresses.isEmpty())
|
||||||
dir = otherAddresses.pop_front();
|
{
|
||||||
|
dir = otherAddresses.first();
|
||||||
|
otherAddresses.pop_front();
|
||||||
|
}
|
||||||
|
|
||||||
if(otherAddresses.length()>0 || !dir.isEmpty())
|
if(otherAddresses.length()>0 || !dir.isEmpty())
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user