Skip to content

Commit

Permalink
Update wizard-ui.js
Browse files Browse the repository at this point in the history
  • Loading branch information
Mletter1 committed Dec 16, 2021
1 parent 3aa5845 commit efbb91c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions web-server/plugins/slycat-parameter-image/js/wizard-ui.js
Expand Up @@ -330,10 +330,10 @@ function constructor(params)
else
{
client.post_remotes_smb_fetch({
user_name: component.remote.username(),
user_name: component.remote.username().trim(),
password: component.remote.password(),
server: component.remote.hostname(),
share: component.remote.share()
server: component.remote.hostname().trim(),
share: component.remote.share().trim()
}).then((response) => {
console.log("authenticated.",response);
if(response.ok){
Expand Down

0 comments on commit efbb91c

Please sign in to comment.