We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed57ac8 commit 88bef0cCopy full SHA for 88bef0c
ide-common/src/main/java/org/digma/intellij/plugin/analytics/AnalyticsService.java
@@ -195,7 +195,7 @@ public List<CodeObjectInsight> getInsights(List<String> objectIds) throws Analyt
195
}
196
197
private <TInsight> void onInsightReceived(List<TInsight> insights){
198
- if(!insights.isEmpty() && !SettingsState.getInstance(project).firstTimeInsightReceived) {
+ if(insights != null && !insights.isEmpty() && !SettingsState.getInstance(project).firstTimeInsightReceived) {
199
ActivityMonitor.getInstance(project).registerFirstInsightReceived();
200
SettingsState.getInstance(project).firstTimeInsightReceived = true;
201
SettingsState.getInstance(project).fireChanged();
0 commit comments