Fix Steam elevated check on Linux

This commit is contained in:
Pierce Thompson
2024-08-10 18:00:07 -04:00
parent ff9bede111
commit f073f66533
-1
View File
@@ -52,7 +52,6 @@ export class SteamService {
* @returns true if the Steam process is running as administrator
*/
public async isElevated(): Promise<boolean>{
if(process.platform === "linux"){ return true; }
const steamPid = await this.getSteamPid();
if(!steamPid){ return false; }