File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
ide-common/src/main/kotlin/org/digma/intellij/plugin/persistence Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,11 @@ internal open class PersistenceState : PersistentStateComponent<PersistenceData>
3333
3434 // todo: backwards compatibility, remove firstTimeConnectionEstablishedTimestampNew in January 2025
3535 // renamed without the new suffix
36- myPersistenceData.firstTimeConnectionEstablishedTimestamp = myPersistenceData.firstTimeConnectionEstablishedTimestampNew
36+ if (myPersistenceData.firstTimeConnectionEstablishedTimestampNew != null &&
37+ myPersistenceData.firstTimeConnectionEstablishedTimestamp == null
38+ ) {
39+ myPersistenceData.firstTimeConnectionEstablishedTimestamp = myPersistenceData.firstTimeConnectionEstablishedTimestampNew
40+ }
3741 }
3842
3943
You can’t perform that action at this time.
0 commit comments