Skip to content

Commit b601552

Browse files
committed
Support new action GoToError in the REST Plugin API
1 parent 439981f commit b601552

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ide-common/src/main/java/org/digma/intellij/plugin/analytics/AnalyticsService.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -565,7 +565,7 @@ public HttpResponse proxyCall(HttpRequest request) throws AnalyticsServiceExcept
565565
@Nullable
566566
public SpanInfoByUid resolveSpanByUid(@NotNull String uid) throws AnalyticsServiceException {
567567

568-
if (backendVersionOlderThen(project,"0.3.155")) {
568+
if (backendVersionOlderThen(project, "0.3.155")) {
569569
return null;
570570
}
571571

@@ -574,8 +574,8 @@ public SpanInfoByUid resolveSpanByUid(@NotNull String uid) throws AnalyticsServi
574574
}
575575

576576
@Nullable
577-
public EnvironmentInfoByErrorId resolveEnvironmentByErrorId(@NotNull String errorId) throws AnalyticsServiceException {
578-
if (backendVersionOlderThen(project,"0.3.155")) {
577+
public String resolveEnvironmentByErrorId(@NotNull String errorId) throws AnalyticsServiceException {
578+
if (backendVersionOlderThen(project, "0.3.318")) {
579579
return null;
580580
}
581581

0 commit comments

Comments
 (0)