Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
merken committed Jun 6, 2024
1 parent 47ecf9d commit ea5a016
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/services/helperService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,11 @@ export class HelperService {
});
cmd.on("close", code => {
if (code !== 0) {
LogService.error(`reading defaults exited with code ${code}, could not retrieve AppleLanguages`, "CoreService", true);
LogService.error(
`reading defaults exited with code ${code}, could not retrieve AppleLanguages`,
"CoreService",
true
);
LogService.warning(`Defaulting to en_US`, "CoreService", true);
return resolve("en_US");
}
Expand Down

0 comments on commit ea5a016

Please sign in to comment.