Skip to content

Commit

Permalink
Fix egde legacy mode detection
Browse files Browse the repository at this point in the history
  • Loading branch information
darkdh committed Oct 12, 2016
1 parent cca3034 commit 6876adc
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,8 @@ bool IsEdgeFavoritesLegacyMode() {
// for its favorites.
if (key.ReadValueDW(L"FavoritesESEEnabled", &ese_enabled) == ERROR_SUCCESS)
return !ese_enabled;
return true;
// No value to read means not legacy mode
return false;
}

bool EdgeImporterCanImport() {
Expand Down

0 comments on commit 6876adc

Please sign in to comment.