diff --git a/src/StatusScreen.vue b/src/StatusScreen.vue index ae3363c..d2456ce 100644 --- a/src/StatusScreen.vue +++ b/src/StatusScreen.vue @@ -98,7 +98,11 @@ export default { ) { message.data.text.split(";").map(tac_assoc => { let [call, tac] = tac_assoc.split("=", 2); - this.trackedStations[call] = tac; + if (tac) { + this.trackedStations[call] = tac; + } else { + delete this.trackedStations[call]; + } }); } }