Skip to content

Commit ae311bc

Browse files
committed
Fix autostart filenames on Linux
1 parent 735d6b5 commit ae311bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/qt/guiutil.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -639,7 +639,7 @@ fs::path static GetAutostartFilePath()
639639
std::string chain = gArgs.GetChainName();
640640
if (chain == CBaseChainParams::MAIN)
641641
return GetAutostartDir() / "bitcoin.desktop";
642-
return GetAutostartDir() / strprintf("bitcoin-%s.lnk", chain);
642+
return GetAutostartDir() / strprintf("bitcoin-%s.desktop", chain);
643643
}
644644

645645
bool GetStartOnSystemStartup()

0 commit comments

Comments
 (0)