update device string for electron

This commit is contained in:
Kyle Spearrin 2018-07-09 09:30:15 -04:00
parent 621a6d1524
commit 9a73e73351
1 changed files with 2 additions and 1 deletions

View File

@ -47,7 +47,8 @@ export class ElectronPlatformUtilsService implements PlatformUtilsService {
}
getDeviceString(): string {
return DeviceType[this.getDevice()].toLowerCase();
const device = DeviceType[this.getDevice()].toLowerCase();
return device.replace('desktop', '');
}
isFirefox(): boolean {