Change credentials filename to credentials-aes.

Otherwise the credentials file gets overwritten when changing branches, since 1.16 uses RC4 and 1.17 uses AES now.
This commit is contained in:
Pentarctagon 2022-08-21 00:46:33 -05:00
parent cea68865d8
commit 75e0a4ac52

View file

@ -132,7 +132,7 @@ std::string get_prefs_file()
std::string get_credentials_file()
{
return get_user_config_dir() + "/credentials";
return get_user_config_dir() + "/credentials-aes";
}
std::string get_default_prefs_file()