From 95d05cf799b82343666b165bbb0f2fd74fce26cd Mon Sep 17 00:00:00 2001
From: sin365 <353374337@qq.com>
Date: Thu, 9 Jan 2025 13:32:15 +0800
Subject: [PATCH] mark
---
.../Assets/Script/AppMain/Event/EEvent.cs | 2 +-
.../Assets/Script/AppMain/Manager/HttpAPI.cs | 8 ++++----
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/AxibugEmuOnline.Client/Assets/Script/AppMain/Event/EEvent.cs b/AxibugEmuOnline.Client/Assets/Script/AppMain/Event/EEvent.cs
index 680cacf6..914c9755 100644
--- a/AxibugEmuOnline.Client/Assets/Script/AppMain/Event/EEvent.cs
+++ b/AxibugEmuOnline.Client/Assets/Script/AppMain/Event/EEvent.cs
@@ -87,7 +87,7 @@
/// 当Rom收藏状态变化时触发
/// RomID
///
- OnRomStarStateChanged, //TODO 实现这个事件
+ OnRomStarStateChanged,
///
/// 网络即时存档列表更新
///
diff --git a/AxibugEmuOnline.Client/Assets/Script/AppMain/Manager/HttpAPI.cs b/AxibugEmuOnline.Client/Assets/Script/AppMain/Manager/HttpAPI.cs
index 7c009252..1b1f7b1f 100644
--- a/AxibugEmuOnline.Client/Assets/Script/AppMain/Manager/HttpAPI.cs
+++ b/AxibugEmuOnline.Client/Assets/Script/AppMain/Manager/HttpAPI.cs
@@ -129,8 +129,8 @@ namespace AxibugEmuOnline.Client
//string utf8String = Encoding.UTF8.GetString(utf8Bytes);
//searchKey = UrlEncode(utf8String);
//App.log.Info($"search->{utf8String} ->{searchKey}");
- string url = $"{WebSiteApi}/RomList?Page={page}&PageSize={pageSize}&SearchKey={searchKey}&Token={App.user.Token}";
- App.log.Info($"GetRomList=>{url}");
+ string url = $"{WebSiteApi}/MarkList?Page={page}&PageSize={pageSize}&SearchKey={searchKey}&Token={App.user.Token}";
+ App.log.Info($"MarkList=>{url}");
AxiHttpProxy.SendWebRequestProxy request = AxiHttpProxy.Get(url);
yield return request.SendWebRequest;
if (!request.downloadHandler.isDone)
@@ -162,8 +162,8 @@ namespace AxibugEmuOnline.Client
}
private IEnumerator GetMarkListFlow(AxibugProtobuf.RomPlatformType platform, int page, int pageSize, Action callback)
{
- string url = $"{WebSiteApi}/RomList?Page={page}&PageSize={pageSize}&PType={(int)platform}&Token={App.user.Token}";
- App.log.Info($"GetRomList=>{url}");
+ string url = $"{WebSiteApi}/MarkList?Page={page}&PageSize={pageSize}&PType={(int)platform}&Token={App.user.Token}";
+ App.log.Info($"MarkList=>{url}");
AxiHttpProxy.SendWebRequestProxy request = AxiHttpProxy.Get(url);
yield return request.SendWebRequest;
if (!request.downloadHandler.isDone)