Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
anonysoul committed Jan 29, 2024
1 parent 9efe68a commit c5bbcca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/platform/linux.ts
Original file line number Diff line number Diff line change
Expand Up @@ -216,8 +216,8 @@ class GNOMECommander {
},
noProxy: !noProxy ? undefined : noProxy.split(","),
authentication: !useAuthentication ? undefined : {
username: Executor.executeSync(`gsettings get org.gnome.system.proxy.http authentication-user`),
password: Executor.executeSync(`gsettings get org.gnome.system.proxy.http authentication-password`)
username: Executor.executeSync(`gsettings get org.gnome.system.proxy.http authentication-user`).replace(this.singleQuotation, "").replace(this.newline, ""),
password: Executor.executeSync(`gsettings get org.gnome.system.proxy.http authentication-password`).replace(this.singleQuotation, "").replace(this.newline, "")
}
}

Expand Down

0 comments on commit c5bbcca

Please sign in to comment.