removed extra step and variable
This commit is contained in:
parent
24730ee3da
commit
16554e409e
1 changed files with 1 additions and 2 deletions
|
@ -22,9 +22,8 @@ pub enum StateUpdate {
|
||||||
|
|
||||||
impl StateUpdate {
|
impl StateUpdate {
|
||||||
pub fn json_to_state_update(incoming_json: Value) -> Self {
|
pub fn json_to_state_update(incoming_json: Value) -> Self {
|
||||||
let message_type = &incoming_json["type"];
|
|
||||||
|
|
||||||
match message_type.as_str().unwrap() {
|
match incoming_json["type"].as_str().unwrap() {
|
||||||
"update" => {
|
"update" => {
|
||||||
let value = &incoming_json["update"];
|
let value = &incoming_json["update"];
|
||||||
match value.as_str().unwrap() {
|
match value.as_str().unwrap() {
|
||||||
|
|
Loading…
Reference in a new issue