fix:调整新的中继协议中的上报签名逻辑

This commit is contained in:
liyi 2024-11-29 14:18:22 +08:00
parent 3d94a65418
commit 12c6bbe160
2 changed files with 12 additions and 1 deletions

View File

@ -68,4 +68,15 @@ class StartChartApi extends BaseProvider {
); );
return response; return response;
} }
// --
Future<void> analyzeInformationOtherEnd({
required String peerId,
}) async {
final response = await get(
_startChartHost + analyzeInformationOtherEndURL.toUrl + '?id=$peerId',
isUnShowLoading: true,
isUserBaseUrl: false,
);
}
} }

View File

@ -20,7 +20,7 @@ class CommandUDPReciverManager {
if (dataSize < 4) { if (dataSize < 4) {
return; return;
} }
// AppLog.log('appReceiveUDPData:$data'); AppLog.log('appReceiveUDPData:$data');
final Uint8List data1 = Uint8List.fromList(data); final Uint8List data1 = Uint8List.fromList(data);
if (data1.length == 1) { if (data1.length == 1) {