idz: fix news url

This commit is contained in:
2023-11-08 23:54:35 -05:00
parent 4b22bd734e
commit eb10bc2560
2 changed files with 7 additions and 3 deletions

View File

@ -1,5 +1,6 @@
import struct
from core.utils import Utils
from .base import IDZHandlerBase
from core.config import CoreConfig
from ..config import IDZConfig
@ -20,9 +21,11 @@ class IDZHandlerLoadServerInfo(IDZHandlerBase):
offset = 0
if self.version >= IDZConstants.VER_IDZ_210:
offset = 2
t_port = Utils.get_title_port(self.core_config)
news_str = f"http://{self.core_config.title.hostname}:{self.core_config.title.port}/SDDF/230/news/news80**.txt"
err_str = f"http://{self.core_config.title.hostname}:{self.core_config.title.port}/SDDF/230/error"
news_str = f"http://{self.core_config.title.hostname}:{t_port}/idz/news/news80**.txt"
err_str = f"http://{self.core_config.title.hostname}:{t_port}/idz/error"
len_hostname = len(self.core_config.title.hostname)
len_news = len(news_str)