Skip to content

Commit

Permalink
fixup! Implement shortcut parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
dlon committed Feb 11, 2025
1 parent 7ca4c97 commit 6351e03
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -692,6 +692,8 @@ export class WindowsSplitTunnelingAppListRetriever implements ISplitTunnelingApp
} catch (e) {
if (typeof e === 'object' && e && 'message' in e) {
log.error(`Failed to read .lnk shortcut for ${appPath}.`, e.message);
} else {
log.error(`Failed to read .lnk shortcut for ${appPath}.`);
}
return null;
}
Expand Down

0 comments on commit 6351e03

Please sign in to comment.