Skip to content

Commit

Permalink
Always set feature indicator to empty list
Browse files Browse the repository at this point in the history
  • Loading branch information
Rawa committed Oct 14, 2024
1 parent 4f997f3 commit 46b7e78
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ internal fun ManagementInterface.TunnelState.toDomain(): TunnelState =
location.toDomain()
} else null
},
featureIndicators = connected.featureIndicators.toDomain(),
featureIndicators = emptyList()
)
ManagementInterface.TunnelState.StateCase.CONNECTED ->
TunnelState.Connected(
Expand All @@ -106,7 +106,7 @@ internal fun ManagementInterface.TunnelState.toDomain(): TunnelState =
null
}
},
featureIndicators = connected.featureIndicators.toDomain(),
featureIndicators = emptyList()
)
ManagementInterface.TunnelState.StateCase.DISCONNECTING ->
TunnelState.Disconnecting(
Expand Down

0 comments on commit 46b7e78

Please sign in to comment.