mirror of
https://github.com/aclist/dztui.git
synced 2026-08-26 09:47:36 +02:00
fix: cast ports to int
This commit is contained in:
parent
cba884da7e
commit
1be7bddbb4
@ -1,14 +1,11 @@
|
||||
import logging
|
||||
import requests
|
||||
from typing import Optional, TYPE_CHECKING
|
||||
from typing import Optional
|
||||
|
||||
from dzgui.const.endpoints import BM_SERVERS
|
||||
|
||||
logger = logging.getLogger(__name__)
|
||||
|
||||
if TYPE_CHECKING:
|
||||
from dzgui.api.servers import Record
|
||||
|
||||
|
||||
def get_attributes(key: str, uid: int) -> str:
|
||||
# TODO: handle if key is not set
|
||||
|
||||
@ -503,4 +503,4 @@ def response_to_record(res: dict) -> Record:
|
||||
ip = res["addr"].split(":")[0]
|
||||
gameport = res["gameport"]
|
||||
qport = res["addr"].split(":")[1]
|
||||
return Record(ip, gameport, qport)
|
||||
return Record(ip, int(gameport), int(qport))
|
||||
|
||||
Loading…
Reference in New Issue
Block a user