Fix autostart filenames on Linux
This commit is contained in:
parent
735d6b57e7
commit
ae311bc036
1 changed files with 1 additions and 1 deletions
|
@ -639,7 +639,7 @@ fs::path static GetAutostartFilePath()
|
|||
std::string chain = gArgs.GetChainName();
|
||||
if (chain == CBaseChainParams::MAIN)
|
||||
return GetAutostartDir() / "bitcoin.desktop";
|
||||
return GetAutostartDir() / strprintf("bitcoin-%s.lnk", chain);
|
||||
return GetAutostartDir() / strprintf("bitcoin-%s.desktop", chain);
|
||||
}
|
||||
|
||||
bool GetStartOnSystemStartup()
|
||||
|
|
Loading…
Reference in a new issue