Skip to content

Commit

Permalink
chore: apply automated fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
autofix-ci[bot] authored May 2, 2024
1 parent cfcd828 commit f864de6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/classes/ftp-client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,10 @@ export class FTPClient {

const discoveredFeats = status.message.split("\r\n").map((a) => a.trim());
this.feats = Object.fromEntries(
FEATURES.map((feat) => [feat, discoveredFeats.some(v => v.startsWith(feat))]),
FEATURES.map((feat) => [
feat,
discoveredFeats.some((v) => v.startsWith(feat)),
]),
) as FeatMatrix;

let mlst = discoveredFeats.find((v) => v.startsWith("MLST"));
Expand Down

0 comments on commit f864de6

Please sign in to comment.