forked from NG-SD-Plugins/PowerTools
Append "(migrated)" to SettingsJson.name
during migration
This commit is contained in:
parent
529664fadc
commit
326a727a2f
1 changed files with 1 additions and 1 deletions
|
@ -30,7 +30,7 @@ impl From<OldSettingsJson> for SettingsJson {
|
||||||
fn from(old_settings: OldSettingsJson) -> Self {
|
fn from(old_settings: OldSettingsJson) -> Self {
|
||||||
Self {
|
Self {
|
||||||
version: old_settings.version,
|
version: old_settings.version,
|
||||||
name: old_settings.name.clone(),
|
name: format!("{} (migrated)", old_settings.name.clone()),
|
||||||
variant: 0,
|
variant: 0,
|
||||||
persistent: old_settings.persistent,
|
persistent: old_settings.persistent,
|
||||||
cpus: old_settings.cpus.clone(),
|
cpus: old_settings.cpus.clone(),
|
||||||
|
|
Loading…
Reference in a new issue