fix(bugcollect): WebhookService 使用 getRelease() 替代不存在的 getAppVersion()
LogIssueEntity 无 getAppVersion(),应使用 getRelease(), 导致上次 Jenkins 构建编译失败。 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
这个提交包含在:
父节点
198dc7f960
当前提交
7c360c407b
@ -77,7 +77,7 @@ public class WebhookService {
|
|||||||
"count", issue.getCount(),
|
"count", issue.getCount(),
|
||||||
"lastSeenAt", issue.getLastSeenAt().toString(),
|
"lastSeenAt", issue.getLastSeenAt().toString(),
|
||||||
"platform", issue.getPlatform() != null ? issue.getPlatform() : "",
|
"platform", issue.getPlatform() != null ? issue.getPlatform() : "",
|
||||||
"appVersion", issue.getAppVersion() != null ? issue.getAppVersion() : ""
|
"appVersion", issue.getRelease() != null ? issue.getRelease() : ""
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|||||||
正在加载...
在新工单中引用
屏蔽一个用户