feat:appid

This commit is contained in:
苏竹红
2025-10-28 11:25:43 +08:00
parent b4365a795c
commit 5120b2c48c
2 changed files with 13 additions and 2 deletions

View File

@@ -91,8 +91,10 @@ public class OkHttpUtil {
}
ResponseBody body = response.body();
logResponse(url, response.code(), body.string());
return body != null ? body.string() : null;
String responseBody = body != null ? body.string() : null;
logResponse(url, response.code(), responseBody);
return responseBody;
}
}