Skip to content

Commit e1d95dc

Browse files
Update lib/services/device/device-install-app-service.ts
Co-authored-by: Igor Randjelovic <[email protected]>
1 parent c1b8326 commit e1d95dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/services/device/device-install-app-service.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ export class DeviceInstallAppService {
5757
let packageFile;
5858
if (packages.length === 1) {
5959
// will always be the case on iOS
60-
packageFile = packages[0].packageName;
60+
packageFile = packages.at(0).packageName;
6161
} else if (device.deviceInfo.abis) {
6262
packages.find(({ packageName })=> {
6363
if(device.deviceInfo.abis.some(abi => packageName.includes(abi))) {

0 commit comments

Comments
 (0)