mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-08-21 05:43:32 -07:00
Merge pull request #15926 from sledgehammer999/fix_migration
Correct the order of the migrated settings' mappings
This commit is contained in:
commit
9b61991523
1 changed files with 2 additions and 2 deletions
|
@ -233,8 +233,8 @@ namespace
|
||||||
{
|
{
|
||||||
struct KeyMapping
|
struct KeyMapping
|
||||||
{
|
{
|
||||||
QString oldKey;
|
|
||||||
QString newKey;
|
QString newKey;
|
||||||
|
QString oldKey;
|
||||||
};
|
};
|
||||||
|
|
||||||
const KeyMapping mappings[] =
|
const KeyMapping mappings[] =
|
||||||
|
@ -322,7 +322,7 @@ namespace
|
||||||
{
|
{
|
||||||
const auto value = settingsStorage->loadValue<QVariant>(mapping.oldKey);
|
const auto value = settingsStorage->loadValue<QVariant>(mapping.oldKey);
|
||||||
settingsStorage->storeValue(mapping.newKey, value);
|
settingsStorage->storeValue(mapping.newKey, value);
|
||||||
settingsStorage->removeValue(mapping.oldKey);
|
// TODO: Remove oldKey after ~v4.4.3 and bump migration version
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue