Skip to content

Commit

Permalink
Merge pull request #4977 from Jojo-1000/fix-empty-advanced-options
Browse files Browse the repository at this point in the history
Do not set advanced options with empty string to true
  • Loading branch information
kenkendk committed May 21, 2024
2 parents e743cc7 + b9d4be6 commit aaf1067
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions Duplicati/Server/webroot/ngax/scripts/services/AppUtils.js
Original file line number Diff line number Diff line change
Expand Up @@ -308,8 +308,6 @@ backupApp.service('AppUtils', function($rootScope, $timeout, $cookies, AppServic
if (eqpos > 0) {
key = line.substr(0, eqpos).trim();
value = line.substr(eqpos + 1).trim();
if (value == '')
value = true;
}

if (validateCallback)
Expand Down

0 comments on commit aaf1067

Please sign in to comment.