Flip the optionality of the auto_update
setting (#10302)
This PR flips the optionality of the `AutoUpdateSettingContent` to make it a bit easier to work with. #### Before ```rs struct AutoUpdateSettingContent(Option<bool>); type FileContent = AutoUpdateSettingContent; ``` #### After ```rs struct AutoUpdateSettingContent(bool); type FileContent = Option<AutoUpdateSettingContent>; ``` Release Notes: - N/A
This commit is contained in:
parent
def87a8d76
commit
843aad80c6
2 changed files with 9 additions and 19 deletions
|
@ -97,10 +97,7 @@ impl Settings for ClientSettings {
|
|||
|
||||
type FileContent = ClientSettingsContent;
|
||||
|
||||
fn load(sources: SettingsSources<Self::FileContent>, _: &mut AppContext) -> Result<Self>
|
||||
where
|
||||
Self: Sized,
|
||||
{
|
||||
fn load(sources: SettingsSources<Self::FileContent>, _: &mut AppContext) -> Result<Self> {
|
||||
let mut result = sources.json_merge::<Self>()?;
|
||||
if let Some(server_url) = &*ZED_SERVER_URL {
|
||||
result.server_url = server_url.clone()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue