Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
unclekingpin committed Nov 25, 2023
1 parent b9c1df4 commit c4e9cbe
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/runtime/env.rs
Original file line number Diff line number Diff line change
Expand Up @@ -519,10 +519,7 @@ fn migrate_storage_schema_to_v11<E: Env>() -> TryEnvFuture<()> {
.and_then(|settings| settings.as_object_mut())
{
Some(settings) => {
settings.insert(
"surroundSound".to_owned(),
serde_json::Value::Bool(false),
);
settings.insert("surroundSound".to_owned(), serde_json::Value::Bool(false));
E::set_storage(PROFILE_STORAGE_KEY, Some(&profile))
}
_ => E::set_storage::<()>(PROFILE_STORAGE_KEY, None),
Expand Down

0 comments on commit c4e9cbe

Please sign in to comment.