fix missing character

This commit is contained in:
KF7EEL 2021-09-01 16:24:17 -07:00
parent 3678ca107e
commit 35c5afafff
1 changed files with 1 additions and 1 deletions

View File

@ -1395,7 +1395,7 @@ def create_app():
passp = passphrase
pub_list.append([m.server + '_' + m.name, sl.ip, passphrase, m.port])
for p in pl:
sl = ServerList.query.filter_by(name=m.server).first()
sl = ServerList.query.filter_by(name=p.server).first()
if p.enable_um == True:
passp = passphrase
pub_list.append([p.server + '_' + p.name, sl.ip, passphrase, p.external_port])