Skip to content

Commit

Permalink
fix 5g packet validation
Browse files Browse the repository at this point in the history
  • Loading branch information
AmyangXYZ committed Jan 8, 2024
1 parent f28f892 commit 28c8a6b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/core/network.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export class NetworkHub {
kdTree: KDTree // to find nearest neighbors

PresetTopos: { [name: string]: any } = presetTopos
SelectedTopo = ref('Random')
SelectedTopo = ref('5G single-cell')

asnTimer: any
SignalReset = ref(0)
Expand Down Expand Up @@ -117,6 +117,7 @@ export class NetworkHub {
isValid = true
break
case PROTOCOL_TYPE.FIVE_G:
isValid = true
break
default:
isValid = true
Expand Down

0 comments on commit 28c8a6b

Please sign in to comment.