fix(bugcollect): WebhookService 使用 getRelease() 替代不存在的 getAppVersion()

LogIssueEntity 无 getAppVersion(),应使用 getRelease(),
导致上次 Jenkins 构建编译失败。

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
这个提交包含在:
XuqmGroup 2026-06-17 15:35:34 +08:00
父节点 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() : ""
) )
); );