Merge pull request #703 from silentrald/bugfix/linux-icons

[wiki] added guide to fix missing in-game icons in linux
This commit is contained in:
MathieuG-P
2024-12-21 13:40:04 +01:00
committed by GitHub
3 changed files with 13 additions and 1 deletions
+1 -1
View File
@@ -42,7 +42,7 @@ export class BSVersionLibService {
private async shouldLoadFromConfig(): Promise<boolean> {
// Some special cases of readonly memory installations
return IS_FLATPAK || this.linuxService.isNixOS();
return process.platform === "linux" && (IS_FLATPAK || this.linuxService.isNixOS());
}
private async getLocalVersions(): Promise<BSVersion[]> {